# AgentDatum Real-Time USD Exchange Rate

> AgentDatum Real-Time USD Exchange Rate is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns real-time USD exchange rates against 150+ currencies in a single GET call

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/life/exchange-rate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-real-time-usd-exchange-rate-f872f85b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v2x6nK8KkTYeVqsAALbr7

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 agentdatum-real-time-usd-exchange-rate-f872f85b
```

Example prompt: What's the current USD exchange rate against the euro, Japanese yen, and British pound right now?

## When to prefer this

Choose this endpoint when you need broad USD-to-many-currencies coverage in a single cheap call ($0.001 USDC), especially for financial dashboards, pricing engines, or travel apps needing real-time data across 150+ currencies without managing a separate forex API subscription.

## Known failure modes

- Payment not processed — endpoint requires $0.001 USDC x402 payment header; missing or invalid payment returns 402
- No query parameters required — passing unsupported params may be silently ignored
- Rate data may be delayed if upstream forex provider is unavailable
- Currency not found if requesting an obscure or unsupported currency code

## How this service works

实时汇率：USD对150+币种

## Output

A JSON object containing real-time exchange rates for USD against 150+ global currencies, with each currency code mapped to its current rate relative to one USD.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/agentdatum-real-time-usd-exchange-rate-f872f85b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
