# Blockscout Shibarium Deposit Count

> Blockscout Shibarium Deposit Count 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).

Returns the total count of deposits from Ethereum into the Shibarium Layer-2 network

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/shibarium/deposits/count
- 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-shibarium-deposit-count-5e06310b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1BvwvXCaZqKdP1JhV8yvZ

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-deposit-count-5e06310b
```

Example prompt: How many total deposits have been made into the Shibarium network so far? Pull the count from Blockscout's Shibarium bridge data.

## When to prefer this

Use this endpoint when you specifically need the total deposit count for the Shibarium Layer-2 network as indexed by Blockscout. Prefer this over generic blockchain explorers when you need a simple scalar count rather than paginated deposit records, or when building dashboards that track Shibarium bridge adoption metrics.

## Known failure modes

- Invalid or missing chain_id path parameter returns a 404 or error response
- Network timeout if Blockscout API is under load
- Returns 0 if the chain has no recorded deposits or data is unavailable
- Payment failure (402) if x402 payment is not properly submitted

## 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 single integer representing the total cumulative number of deposits made into the Shibarium network via the bridge. The response is a plain JSON number (e.g. 42983).

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": 0
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-shibarium-deposit-count-5e06310b/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)
