# Robinhood Radar Swap Quote Proxy (KyberSwap / OpenOcean)

> Robinhood Radar Swap Quote Proxy (KyberSwap / OpenOcean) is a paid API for AI agents from www.robinhoodradar.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches swap quotes and routing data from KyberSwap or OpenOcean DEX aggregators via a unified proxy endpoint.

## Facts

- Endpoint: GET https://www.robinhoodradar.com/api/quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-radar-swap-quote-proxy-kyberswap-openocean-c76ef949
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9TuT5P9hw42xoH8GS1Cr8

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 robinhood-radar-swap-quote-proxy-kyberswap-openocean-c76ef949
```

Example prompt: Can you get me a swap quote from KyberSwap for swapping USDC to ETH so I can see the best route and price?

## When to prefer this

Use this endpoint when you need swap quotes or routing data from KyberSwap or OpenOcean without directly calling those APIs, particularly within the Robinhood Radar ecosystem or when already paying via x402 micropayments. Prefer this over direct DEX API calls if you want a unified proxy interface for both aggregators.

## Known failure modes

- Missing required query params 'src' or 'op' returns a validation error
- Invalid 'src' value (not 'kyber' or 'openocean') causes rejection
- Invalid 'op' for selected 'src' (e.g. 'quote' with 'kyber') causes rejection
- Upstream DEX aggregator unavailability may cause timeout or 502 error
- Insufficient payment (less than $0.01 USDC) causes 402 response

## How this service works

Robinhood Radar aggregator swap-quote proxy (KyberSwap / OpenOcean).

## Output

Returns swap quote data from the selected DEX aggregator (KyberSwap or OpenOcean), including routing paths, expected output amounts, price impact, and liquidity sources, formatted as a JSON object.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "allOf": [
      {
       "if": {
        "properties": {
         "src": {
          "const": "kyber"
         }
        }
       },
       "then": {
        "properties": {
         "op": {
          "const": "routes"
         }
        }
       }
      },
      {
       "if": {
        "properties": {
         "src": {
          "const": "openocean"
         }
        }
       },
       "then": {
        "properties": {
         "op": {
          "enum": [
           "quote",
           "swap"
          ]
         }
        }
       }
      }
     ],
     "required": [
      "src",
      "op"
     ],
     "properties": {
      "op": {
       "enum": [
        "routes",
        "quote",
        "swap"
       ],
       "type": "string"
      },
      "src": {
       "enum": [
        "kyber",
        "openocean"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-radar-swap-quote-proxy-kyberswap-openocean-c76ef949/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.robinhoodradar.com](https://www.zero.xyz/host/www.robinhoodradar.com/llms.txt)
