# AI Rook Currency Converter

> AI Rook Currency Converter is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a monetary value from one currency to another and returns the converted amount with the exchange rate used

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/convert
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-currency-converter-6ae174df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vonSVX_7C1pdZGhv_JFw5

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 ai-rook-currency-converter-6ae174df
```

Example prompt: Convert 100 USD to EUR and tell me the exchange rate and result.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call currency conversion without API key signup, especially within an agentic workflow already using x402/USDC micropayments on Base mainnet. Ideal for single-shot conversions where spinning up a full forex integration is overkill.

## Known failure modes

- Unsupported or invalid currency codes return an error
- Missing required query parameters (amount, from, to) may result in a 400 bad request
- Payment not settled via x402/USDC may result in a 402 Payment Required response
- Network or exchange rate data unavailability may cause a 503 or timeout

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

A JSON object containing the source currency (from), target currency (to), the exchange rate used (rate), the original input value (value), and the converted result (result). Example: {"from":"USD","to":"EUR","rate":0.923,"value":100,"result":92.3}.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "EUR",
  "from": "USD",
  "rate": 0.923,
  "value": 100,
  "result": 92.3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-currency-converter-6ae174df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
