# CHF to USD Currency Converter

> CHF to USD Currency Converter is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a Swiss Franc amount to US Dollars at the current live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/chf/usd/chf-usd
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chf-to-usd-currency-converter-73558e56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HCQuK6S3dRYERhourCrmk

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 chf-to-usd-currency-converter-73558e56
```

Example prompt: How much is 250 Swiss francs in US dollars right now? Give me the live exchange rate and the converted amount.

## When to prefer this

Use this endpoint when you need to convert a specific Swiss Franc amount to USD at a live rate, especially in automated workflows requiring precise forex conversion with a timestamped rate. Prefer over generic currency APIs when the x402 micropayment model fits your stack and you need CHF-to-USD specifically without broader currency basket support.

## Known failure modes

- Missing or invalid amount parameter may return an error or default to 1 unit
- Upstream forex data provider unavailable may result in stale or failed rate fetch
- Non-numeric amount value causes bad request error
- Rate limit or payment failure returns 402 Payment Required

## How this service works

Convert CHF to USD at live rate. Pass ?amount=100 for value in US Dollar. 瑞士法郎兑换美元换算。スイスフランを米ドルに換算。Convertir franco suizo a dólar. 스위스 프랑를 달러로 환전. chf to usd convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with: the source currency (CHF), target currency (USD), the live exchange rate, the input amount, the converted result in USD, the timestamp of the rate (as_of), and the data source name.

## 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": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的金额，如 ?amount=100"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chf-to-usd-currency-converter-73558e56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
