# Spraay Gateway - Supported Swap Tokens List

> Spraay Gateway - Supported Swap Tokens List is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the list of tokens supported for swapping on the Spraay gateway.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/swap/tokens
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-b0d425b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zgrkUhSc3fu1Odz-Qwuy8

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-b0d425b4
```

Example prompt: What tokens are currently supported for swapping on Spraay? I want to know which assets I can trade before I set up a swap.

## When to prefer this

Use this endpoint when you need to discover which tokens are available for swapping on the Spraay gateway before initiating a swap or quote request. Prefer this over manually maintaining a token list or using other swap APIs if you are already integrated with Spraay's ecosystem.

## Known failure modes

- Service unavailable or gateway error returning 5xx
- Payment failure via x402 protocol returning 402
- Empty token list if no tokens are currently configured
- Network timeout on slow connections

## How this service works

Supported swap tokens.

## Output

An array of token objects representing all tokens supported for swapping on the Spraay gateway, likely including token names, symbols, mint addresses, and other token metadata.

## Example request

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

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-b0d425b4/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)
