# SixPath Exchange Convert

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

Converts a specified amount from one currency or asset to another, returning the converted value.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/exchange-convert
- Price: $0.183689/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-convert-971450b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-uhQrsUgDcTKdclTL4bNr

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-convert-971450b5 -d '<json body>'
```

Example prompt: Convert 250 USD to EUR using SixPath and tell me how much I'd get.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call currency or crypto conversion without maintaining an ongoing subscription. Suitable for one-off conversion lookups across fiat and crypto pairs via the SixPath hub.

## Known failure modes

- Unsupported currency code returns an error or empty result
- Invalid or non-numeric amount causes a bad request
- Missing required fields (from, to, amount) returns a validation error
- Network or service downtime returns a 5xx error
- Payment failure via x402 protocol blocks the request

## 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

Returns an object containing the converted amount for the specified currency pair and input value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "amount": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-exchange-convert-971450b5/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)
