# ARS to CNY Currency Converter

> ARS to CNY 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 Chinese Yuan (CNY) using a live exchange rate, accessible via micropayment.

## Facts

- Endpoint: POST https://api.fastapi.online/f/fx/ars/cny
- 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-cny-currency-converter-f716650f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qnKXsdUSCURWdDR89N_LJ

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-cny-currency-converter-f716650f -d '<json body>'
```

Example prompt: How much is 5000 Argentine pesos worth in Chinese yuan right now?

## When to prefer this

Choose this endpoint when you specifically need to convert Argentine Peso (ARS) amounts to Chinese Yuan (CNY) at low cost ($0.0002 per call). Suitable for agents that need real-time or near-real-time currency conversion between these two specific currencies without integrating a full forex API.

## Known failure modes

- Invalid or missing amount field returns validation error
- Negative or zero amount may return an error or unexpected result
- Service unavailable if micropayment (x402 USDC) is not completed
- Rate data may be stale if upstream exchange feed is down
- Unexpected response shape due to generic response schema

## How this service works

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

## Output

Returns the converted monetary value from ARS to CNY, representing how much the specified Argentine Peso amount is worth in Chinese Yuan based on 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-cny-currency-converter-f716650f/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)
