# Synapse API — Boba Network Token Transfers

> Synapse API — Boba Network Token Transfers is a paid API for AI agents from synapse-api-brown.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves token transfer history for a specified wallet address on the Boba Network blockchain, with filtering by block range, contract addresses, and pagination support.

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/boba/token/transfers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synapse-api-boba-network-token-transfers-60808576
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ohWnGUToZAwMWu90EMAal

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 synapse-api-boba-network-token-transfers-60808576 -d '<json body>'
```

Example prompt: Show me all token transfers for Boba Network wallet 0xAbC123... from block 1000000 to 1050000, sorted ascending, and limit it to 25 results for just the USDT contract 0xDef456...

## When to prefer this

Use this endpoint when you specifically need token transfer history on the Boba Network (an Ethereum Layer 2 optimistic rollup). Prefer this over generic Ethereum endpoints when the target wallet activity is on Boba, and over manual RPC calls when you need indexed, filterable, paginated transfer history without running your own node.

## Known failure modes

- Invalid wallet address format returns a 400 error
- Unrecognized contract address yields empty results
- Invalid block range (fromBlock > toBlock) may return an error or empty set
- Missing required owner field results in a validation error
- Expired or invalid pageKey causes pagination failure
- Network timeout or upstream indexer unavailability returns a 5xx error

## How this service works

High-speed API suite for AI processing, web scraping, and smart data utilities across 57+ blockchain networks. Pay-per-call via x402.

## Output

Returns a paginated list of token transfer events on the Boba Network, including sender and receiver addresses, token contract address, amount transferred, block number, and transaction hash. Also includes a page key for fetching the next page of results when available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "owner": {
   "type": "string"
  },
  "pageKey": {
   "type": "string"
  },
  "toBlock": {
   "type": "string"
  },
  "maxCount": {
   "type": "number"
  },
  "fromBlock": {
   "type": "string"
  },
  "contractAddresses": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synapse-api-boba-network-token-transfers-60808576/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from synapse-api-brown.vercel.app](https://www.zero.xyz/host/synapse-api-brown.vercel.app/llms.txt)
