# Synapse API — Zora Token Balances

> Synapse API — Zora Token Balances 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-15).

Fetches Zora token balances for a given wallet owner, optionally filtered by specific contract addresses

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/zora/token/balances
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synapse-api-zora-token-balances-56a1d65e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FHbbCi0JdyhbCTAM8uEgM

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-zora-token-balances-56a1d65e -d '<json body>'
```

Example prompt: What are the Zora token balances for wallet 0xAbC...123? Also filter it to just these two contracts: 0xDEF...456 and 0x789...ABC.

## When to prefer this

Use this endpoint when you need on-chain Zora token balance data for a specific wallet address, especially when you want to filter results to particular contract addresses. Prefer this over generic blockchain balance APIs when Zora-specific token data is the target.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Invalid contract address in the array causes a failed lookup
- Wallet with no Zora tokens returns an empty balances array
- Network or upstream Zora API timeout causes a 5xx error
- Missing required 'owner' field causes a 400 validation 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 token balance data for the specified owner wallet on Zora, including per-token and/or per-contract balance amounts, optionally scoped to the provided list of contract addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "owner": {
   "type": "string"
  },
  "contractAddresses": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synapse-api-zora-token-balances-56a1d65e/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)
