# Blockscout Optimism Dispute Games List

> Blockscout Optimism Dispute Games List is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-12).

Retrieves a paginated list of Optimism fault dispute games for a specified chain, including game status, type, creation/resolution timestamps, L2 block number, and contract address.

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/optimism/games
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-optimism-dispute-games-list-9b35c976
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TiOWrFCGN-tZWCxe85P_Z

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability blockscout-optimism-dispute-games-list-9b35c976
```

Example prompt: Show me the latest Optimism dispute games on chain 10 — I want to see their status, game type, L2 block number, and contract addresses, paginated 25 items at a time.

## When to prefer this

Use this endpoint when you need structured, paginated data about Optimism fault dispute games on a specific OP stack chain via Blockscout's API. Prefer it over general block explorer UIs when automating monitoring, auditing resolution timelines, or programmatically cross-referencing dispute game contracts with on-chain data. It is purpose-built for OP stack dispute game data and does not require authentication beyond per-call payment.

## Known failure modes

- Invalid or unsupported chain_id returns an error or empty result
- Pagination index out of range returns empty items array
- Network or upstream node unavailability causes 5xx errors
- Malformed query parameters (non-integer index/items_count) cause 400 errors
- Chain does not support Optimism dispute games returns empty or error response

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

Returns a paginated JSON object with an array of dispute game items, each containing: game index, status string, game type integer, created_at and resolved_at timestamps, L2 block number, and contract address hash. Also includes next_page_params for cursor-based pagination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "chain_id": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "index": {
       "type": "integer"
      },
      "items_count": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "index": 0,
    "status": "string",
    "game_type": 0,
    "created_at": "string",
    "resolved_at": "string",
    "l2_block_number": 0,
    "contract_address_hash": "string"
   }
  ],
  "next_page_params": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-optimism-dispute-games-list-9b35c976/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
