# PrintMoneyLab USD/KRW FX Rate

> PrintMoneyLab USD/KRW FX Rate is a paid API for AI agents from api.printmoneylab.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13, last successful call 2026-05-27).

Returns the current USD to Korean Won (KRW) foreign exchange rate in real-time

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/fx-rate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-05-27
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-printmoneylab-com-69381ad8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Uq9MfxScFZ6yvX88ohwI

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 api-printmoneylab-com-69381ad8
```

Example prompt: What's the current USD to KRW exchange rate right now?

## When to prefer this

Use this endpoint when you need a real-time or near-real-time USD/KRW exchange rate specifically, especially in workflows involving Korean crypto market analysis, Kimchi Premium calculations, or converting USD-denominated prices to KRW. Prefer this over embedded FX lookups in other APIs when you need the raw rate as a standalone value with source attribution and freshness metadata.

## Known failure modes

- Upstream exchangerate-api.com unavailable — stale or no rate returned
- Payment of 0.001 USDC not fulfilled — 402 Payment Required response
- Network timeout contacting the FX data provider
- Rate data momentarily unavailable due to provider downtime

## How this service works

Current USD/KRW foreign exchange rate

## Output

Returns a JSON object with the base currency (USD), quote currency (KRW), the current exchange rate as a float (e.g. 1477.65), the data source (exchangerate-api.com), a Unix millisecond timestamp, and data_age_seconds indicating freshness.

## Example request

```json
{
 "properties": "USD_KRW"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "base": "USD",
  "rate": 1475.27,
  "quote": "KRW",
  "source": "exchangerate-api.com",
  "timestamp": 1776340000000,
  "data_age_seconds": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-printmoneylab-com-69381ad8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.printmoneylab.com](https://www.zero.xyz/host/api.printmoneylab.com/llms.txt)
