# Spraay Gateway Live Token Prices

> Spraay Gateway Live Token Prices 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-15).

Returns live prices for cryptocurrency tokens, optionally filtered by a specific token symbol.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/prices
- Price: $0.005/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-dc16ea6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2VMdeSG8q6OlrT7c5dqPY

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

Example prompt: What's the current live price of SOL right now?

## When to prefer this

Use this endpoint when you need real-time spot prices for one or more crypto tokens and are operating within the Spraay gateway ecosystem, especially when chaining with other Spraay endpoints like swap quotes, token balances, or DeFi positions that require up-to-date pricing context.

## Known failure modes

- Unknown token symbol returns empty or error response
- Network or gateway timeout for live price feed
- Payment failure (402) if USDC balance is insufficient
- Invalid query parameter format returns 400 error
- Price feed temporarily unavailable for specific token

## How this service works

Live token prices.

## Output

Returns a prices object mapping token symbols or identifiers to their current market prices, suitable for display, calculations, or downstream DeFi operations.

## Example request

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

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

## More

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