# auor.io (Oreo) - Today's Exchange Rates

> auor.io (Oreo) - Today's Exchange Rates is a paid API for AI agents from api.auor.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current exchange rate information for all available currency pairs

## Facts

- Endpoint: GET https://api.auor.io/all-rates-today/v1/rates
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/auor-io-oreo-today-s-exchange-rates-2160f9c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ny98LoWbikzjkJHnQRKxE

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 auor-io-oreo-today-s-exchange-rates-2160f9c1
```

Example prompt: What are all the current exchange rates available today? I need the latest forex rates across all currency pairs.

## When to prefer this

Use this endpoint when you need a broad snapshot of all current exchange rates in a single call, rather than querying a specific currency pair. Ideal for building currency converters, financial dashboards, or any workflow requiring up-to-date FX data across multiple currencies. Prefer over the historical rates endpoint when only today's rates are needed.

## Known failure modes

- Payment required (402) if x402 payment header not included
- Invalid query parameters return 400 error
- Service unavailable (503) if upstream rate provider is down
- Rate data may be delayed if fetched before daily update

## How this service works

Exchange rate information

## Output

A list of today's exchange rates for all available currency pairs, including currency codes and their corresponding rate values as of the current date.

## 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": {
     "$ref": "https://api.auor.io/schemas/all-rates-today/v1/rates/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/auor-io-oreo-today-s-exchange-rates-2160f9c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
