# organiccryptoyyc.com Currency Conversion API

> organiccryptoyyc.com Currency Conversion API is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts an amount from one ISO 4217 currency to another using ECB exchange rates via the Frankfurter source, returning the rate and converted amount.

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/currency/convert
- 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/organiccryptoyyc-com-currency-conversion-api-1224c8cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G5FiuVXUilFH9kabaUWRR

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 organiccryptoyyc-com-currency-conversion-api-1224c8cb
```

Example prompt: What's the current exchange rate from USD to EUR, and how much would 250 USD convert to?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call (USDC via x402) currency conversion backed by ECB rates without a subscription. It is ideal for agents operating in crypto-native or x402-payment environments that need FX lookups as part of a broader multi-chain or financial workflow on the same organiccryptoyyc.com platform.

## Known failure modes

- Invalid or unsupported ISO 4217 currency code returns an error response
- Missing required 'from' or 'to' query parameters results in a 400-style error
- ECB/Frankfurter upstream unavailability may cause failures or stale rates
- Payment failure (USDC x402) prevents the call from being processed
- Non-numeric or malformed 'amount' parameter may return an error

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

A JSON object containing the source currency (from), target currency (to), the exchange rate (rate), the data source ('frankfurter-ecb'), and the converted amount (convertedAmount) for the requested amount.

## 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": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "3-letter ISO 4217 target currency code, e.g. EUR"
      },
      "from": {
       "type": "string",
       "description": "3-letter ISO 4217 source currency code, e.g. USD"
      },
      "amount": {
       "type": "number",
       "description": "Amount to convert (default 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "EUR",
  "from": "USD",
  "rate": 0.92,
  "source": "frankfurter-ecb",
  "convertedAmount": 92
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/organiccryptoyyc-com-currency-conversion-api-1224c8cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
