# Blockscout Scroll Deposits Count

> Blockscout Scroll Deposits 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-09).

Returns the total count of Scroll bridge deposits on a specified blockchain network via Blockscout's explorer API

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/scroll/deposits/count
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-scroll-deposits-count-b5216496
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T72-YLZWIOBicegisy4uc

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-scroll-deposits-count-b5216496
```

Example prompt: How many total Scroll bridge deposits have been recorded on Ethereum mainnet according to Blockscout?

## When to prefer this

Use this endpoint when you need a quick scalar count of total Scroll bridge deposits for a specific chain without needing paginated transaction details. Prefer this over full deposit list endpoints when only aggregate statistics are required, or when building dashboards or monitoring systems that track bridge activity volume.

## Known failure modes

- Invalid or unsupported chain_id returns an error or empty result
- Network unavailable or Blockscout API downtime returns a 5xx error
- Malformed request path returns 400 Bad Request
- Chain with no Scroll bridge integration returns 0 or 404

## 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

A single integer representing the total number of Scroll bridge deposits recorded on the specified blockchain network. Example response: 0 (or any non-negative integer count).

## 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-scroll-deposits-count-b5216496/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)
