# RagRadar Bridge Quote Fetcher

> RagRadar Bridge Quote Fetcher is a paid API for AI agents from ragradar.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-10).

Fetches cross-chain bridge quotes for moving tokens between two blockchain networks (Base, Arbitrum, Solana) for a given amount

## Facts

- Endpoint: GET https://ragradar.vercel.app/api/bridge/quotes/%7Bfrom%7D/%7Bto%7D/%7Bamount%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-bridge-quote-fetcher-f4d0b594
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tisozBzk3uMnqDIQj6l2E

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 ragradar-bridge-quote-fetcher-f4d0b594
```

Example prompt: Can you get me a bridge quote on RagRadar for moving 500 USDC from Base to Arbitrum so I can see how much I'd receive and what fees to expect?

## When to prefer this

Use this endpoint when you need a real-time cross-chain bridge quote across Base, Arbitrum, and Solana — especially when comparing transfer costs or estimating received amounts before executing a bridge transaction. Prefer this over generic bridge aggregators when you need on-chain analytics context alongside the quote.

## Known failure modes

- Invalid chain identifiers return 400 or 404
- Unsupported chain pair returns no routes found
- Amount too small or too large may return invalid quote
- Temporary bridge provider outage may return 503
- Malformed path parameters cause 400 bad request

## How this service works

AI-powered on-chain analytics across Base, Arbitrum, and Solana. 82 REST endpoints including Portfolio P&L tracker, smart money tracking, whale alerts, token intelligence, DeFi yields, Solana degen tools, social signals, gas tracker, approvals scanner, block checker.

## Output

Returns a bridge quote including estimated output amount, fees, route details, and slippage for transferring a specified token amount from one chain to another

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "amount": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-bridge-quote-fetcher-f4d0b594/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ragradar.vercel.app](https://www.zero.xyz/host/ragradar.vercel.app/llms.txt)
