# Spraay Gateway Cross-Chain Bridge Quote

> Spraay Gateway Cross-Chain Bridge Quote is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a quote for bridging tokens across chains, including estimated fees, routes, and output amounts.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/bridge/quote
- Price: $0.05/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-5e508a41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6dEQf3fsmrP4Ddv0I-ALs

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-5e508a41
```

Example prompt: Get me a bridge quote to move 500 USDC from Ethereum to Arbitrum, sending from my address 0xAbC1234567890abcdef1234567890abcdef123456.

## When to prefer this

Use this endpoint when you need a real-time cross-chain bridge quote before executing a transfer, especially when working with EVM-compatible chains and want fee and route details without committing to a transaction.

## Known failure modes

- Unsupported chain pair returns error or empty route
- Invalid or missing fromAddress returns validation error
- Amount too small or too large for the bridge returns rejection
- Token not supported on one or both chains returns error
- Network congestion may cause stale or unavailable quotes

## How this service works

Cross-chain bridge quote.

## Output

A bridge quote object containing the estimated output amount, fees, recommended route, and status for bridging the specified token and amount from the source chain to the destination chain.

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

## More

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