# HKD to CNY Live Forex Converter

> HKD to CNY Live Forex 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 Hong Kong Dollar amount to Chinese Yuan Renminbi at the live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/hkd/cny/hkd-cny
- 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/hkd-to-cny-live-forex-converter-cacf1c4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lb3UpWtkMHyJ6uKLsZzXe

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 hkd-to-cny-live-forex-converter-cacf1c4d
```

Example prompt: How much is 500 Hong Kong dollars in Chinese yuan right now?

## When to prefer this

Use this endpoint when you need a live, real-time HKD to CNY conversion with a specific amount. It is ideal for financial apps, travel tools, or agents handling cross-border Hong Kong to mainland China transactions. Prefer this over static rate tables or generic multi-currency converters when you specifically need the HKD/CNY pair with a timestamped live rate.

## Known failure modes

- Missing or invalid amount parameter may return an error or default to a base unit conversion
- Rate feed unavailability may cause stale or failed responses
- Non-numeric amount values will likely result in a 400 or parsing error
- Payment failure (x402) will block access if USDC funds are insufficient

## How this service works

Convert HKD to CNY at live rate. Pass ?amount=100 for value in Chinese Yuan. 港币兑换人民币换算。香港ドルを人民元に換算。Convertir dólar de Hong Kong a yuan. 홍콩 달러를 위안로 환전. hkd to cny convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source currency (HKD), target currency (CNY), the live exchange rate, the converted amount result, the original amount passed, a timestamp of when the rate was fetched (as_of), and the data source identifier.

## 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/hkd-to-cny-live-forex-converter-cacf1c4d/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)
