# ARS to CHF Currency Converter

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

Converts an amount from Argentine Peso (ARS) to Swiss Franc (CHF) using current exchange rates, with micropayment gating via x402.

## Facts

- Endpoint: POST https://api.fastapi.online/f/fx/ars/chf
- Price: $0.0002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ars-to-chf-currency-converter-2d4b25c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s1SyQ4a7L_w9yUJHZh6cF

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 ars-to-chf-currency-converter-2d4b25c5 -d '<json body>'
```

Example prompt: How much is 5000 Argentine pesos in Swiss francs right now?

## When to prefer this

Choose this endpoint when you specifically need to convert Argentine Peso (ARS) amounts to Swiss Franc (CHF) and are operating in an x402-enabled payment environment. It is ideal for agents that already handle USDC micropayments on Base and need a lightweight, pay-per-call FX conversion without a subscription or API key.

## Known failure modes

- Invalid or missing amount value returns an error response
- Payment failure or insufficient USDC balance blocks execution (x402 micropayment required)
- Exchange rate data unavailable if upstream provider is down
- Non-numeric amount input may cause a validation error
- Network timeout if the gateway is under load

## How this service works

Self-hosted AI API gateway. Expensive endpoints require an x402 micropayment (USDC on Base) before executing.

## Output

Returns a JSON object containing the converted currency value from ARS to CHF, representing how much the specified amount of Argentine Pesos is worth in Swiss Francs at the current exchange rate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number",
   "description": "Amount of the source currency to convert (default 1)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ars-to-chf-currency-converter-2d4b25c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.fastapi.online](https://www.zero.xyz/host/api.fastapi.online/llms.txt)
