# Vietcombank VND Exchange Rates API

> Vietcombank VND Exchange Rates API is a paid API for AI agents from vn-gold-fx-x402-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns official Vietnamese Dong (VND) exchange rates from Vietcombank for 10+ currencies, including cash buy, transfer buy, and sell rates, updated every 10 minutes.

## Facts

- Endpoint: GET https://vn-gold-fx-x402-production.up.railway.app/v1/fx/vnd
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vietcombank-vnd-exchange-rates-api-0f17cd8e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1JzAfYEIh19xdII0Js7ky

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 vietcombank-vnd-exchange-rates-api-0f17cd8e
```

Example prompt: What are the current Vietcombank cash buy and sell rates for USD, EUR, and JPY against the Vietnamese dong?

## When to prefer this

Use this endpoint when you need official, bank-grade VND exchange rates specifically from Vietcombank — Vietnam's most authoritative FX source — especially for remittance applications, travel pricing, or financial products serving the Vietnamese market. Prefer this over generic FX APIs when you need the cash buy vs transfer buy vs sell rate breakdown that Vietnamese banks publish, or when regulatory/compliance context requires citing an official Vietnamese bank rate.

## Known failure modes

- Invalid currency code returns empty result or 400 error
- Vietcombank data source temporarily unavailable causing stale or missing data
- Rate limiting if called excessively beyond intended use
- Network timeout from upstream bank data feed

## How this service works

Vietnam Dong official exchange rates from Vietcombank, Vietnam's leading FX bank: USD, EUR, JPY, GBP, CNY, KRW, SGD, THB, AUD and 10+ more currencies with cash buy, transfer buy and sell rates. Updated every 10 minutes. Essential for remittance apps, travel agents and pricing engines serving the Vietnamese market.

## Output

Returns a structured list of VND exchange rate entries from Vietcombank, each including the currency code, cash buy rate, transfer buy rate, and sell rate. Data is refreshed every 10 minutes from Vietnam's leading FX bank. Optionally filtered to a single currency if the `currency` query parameter is provided.

## 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": [],
     "properties": {
      "currency": {
       "type": "string",
       "description": "Filter by currency code, e.g. USD, EUR, JPY (optional, default all)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vietcombank-vnd-exchange-rates-api-0f17cd8e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vn-gold-fx-x402-production.up.railway.app](https://www.zero.xyz/host/vn-gold-fx-x402-production.up.railway.app/llms.txt)
