# Spraay Gateway Token Balances

> Spraay Gateway Token Balances is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns token balances for a given blockchain address

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/balances
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-809f3294
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aNVv51Huwgzn3NgNxVHND

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 gateway-spraay-app-809f3294
```

Example prompt: What are all the token balances for the wallet address 0x1234abcd...? I want to see every token it holds.

## When to prefer this

Use this endpoint when you need to enumerate all token balances for a specific blockchain wallet address in a single call. Prefer this over chain-specific RPC calls when you want a normalized, aggregated view of holdings without managing raw RPC infrastructure.

## Known failure modes

- Missing or invalid address parameter returns an error
- Address with no token holdings returns an empty balances array
- Malformed address string may return a validation error
- Payment not provided or insufficient results in 402 Payment Required
- Downstream node or indexer unavailability causes 503 or timeout

## How this service works

Token balances.

## Output

An array of token balances associated with the queried address, including token identifiers and their respective amounts held by that wallet.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x1234567890123456789012345678901234567890"
  }
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-809f3294/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
