# SixPath Exchange Rates API

> SixPath Exchange Rates API is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.08519/call, status unknown (last checked 2026-09-14).

Returns currency exchange rates for a given base currency

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/exchange-rates
- Price: $0.08519/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-exchange-rates-api-192732fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T5FEmmvb1oW8zRIej1Qjz

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 sixpath-exchange-rates-api-192732fb -d '<json body>'
```

Example prompt: Can you fetch the current exchange rates using USD as the base currency so I can see how the dollar compares to other currencies right now?

## When to prefer this

Use this endpoint when you need live currency exchange rate data relative to a specific base currency and are already integrated with the x402 pay-per-call payment protocol on Base chain. Suitable for lightweight, on-demand rate lookups in finance or crypto applications.

## Known failure modes

- Invalid or unsupported base currency code returns an error
- Missing base field may result in a default or error response
- Payment failure via x402/Base chain blocks the request
- Network or upstream data provider downtime causes unavailable rates
- Malformed request body returns a 400-level error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

A JSON object containing exchange rates for various currencies relative to the specified base currency, enabling conversion calculations and financial analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-exchange-rates-api-192732fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
