# Blockscout Shibarium Deposits List

> Blockscout Shibarium Deposits 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-11).

Retrieves a paginated list of deposit transactions from Ethereum L1 to the Shibarium L2 network for a specified chain

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/shibarium/deposits
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-11
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-shibarium-deposits-list-72eb1abb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CzUN-w_p3C6LumHLGqctl

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-shibarium-deposits-list-72eb1abb
```

Example prompt: Pull the latest Shibarium bridge deposits on chain ID 109 — give me the most recent 10 and show me both the L1 and L2 transaction hashes along with the timestamps.

## When to prefer this

Use this endpoint when you specifically need to list inbound bridge deposit transactions from Ethereum L1 into the Shibarium network, with pagination support. Prefer this over generic transaction endpoints when the focus is cross-chain bridge deposits, L1→L2 provenance, or monitoring deposit flow. Not suitable for Shibarium withdrawals (L2→L1) or for querying general transactions unrelated to the bridge.

## Known failure modes

- Invalid or unsupported chain_id returns an error or empty result
- Querying a block_number beyond current chain tip returns no results
- Malformed query parameters (non-integer block_number) may return 400 error
- Rate limiting or payment failure returns 402 Payment Required
- Network unavailability returns 503 or timeout

## 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 deposit items, each containing: user address object, timestamp string, L1 block number, L1 transaction hash, and L2 transaction hash. Also includes next_page_params for fetching subsequent pages.

## 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": {
      "items_count": {
       "type": "integer"
      },
      "block_number": {
       "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": [
   {
    "user": {},
    "timestamp": "string",
    "l1_block_number": 0,
    "l1_transaction_hash": "string",
    "l2_transaction_hash": "string"
   }
  ],
  "next_page_params": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-shibarium-deposits-list-72eb1abb/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)
