# ARS All Currency Rates Converter

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

Converts a given amount from Argentine Peso (ARS) to all other currencies at once, returning a full rate table.

## Facts

- Endpoint: POST https://api.fastapi.online/f/fx/ars/all
- Price: $0.0002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ars-all-currency-rates-converter-1dcd347d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rvjEKXwb-Vp8PAyjLUGse

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-all-currency-rates-converter-1dcd347d -d '<json body>'
```

Example prompt: What's 5000 Argentine pesos worth in every major currency right now? Give me the full conversion table.

## When to prefer this

Choose this endpoint when you need a comprehensive ARS-to-all-currencies rate table in a single call, rather than querying individual currency pairs one at a time. Ideal for bulk conversions, portfolio reporting, or multi-market pricing where the Argentine peso is the base currency.

## Known failure modes

- Invalid amount type returns validation error
- Upstream forex data unavailable causes 500 or stale-rate response
- Missing x402 micropayment header returns 402 Payment Required
- Rate limiting if micropayment not processed correctly

## How this service works

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

## Output

A JSON object containing conversion results from the specified ARS amount (default 1) to all available currencies, including each currency code and its corresponding converted value based on current exchange rates.

## 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-all-currency-rates-converter-1dcd347d/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)
