# fx-concept-oracle

> fx-concept-oracle is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-13).

Returns conceptual cross-border exchange rate metadata for a pair of countries without requiring external API keys

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/fx-concept
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fx-concept-oracle-c1dbecdf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-JbvsH8EGzWY4LdxSgQk8

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 fx-concept-oracle-c1dbecdf
```

Example prompt: Can you pull up the conceptual exchange rate metadata between the United States and Japan — I just need the currency concept info, no live rates required.

## When to prefer this

Use this endpoint when an AI agent needs conceptual or metadata-level currency information for a country pair without needing live exchange rates or holding external FX API keys. Ideal for lightweight currency context lookups in pipelines where real-time pricing is not required.

## Known failure modes

- Missing required countryA or countryB query parameters — returns 400 Bad Request
- Unrecognized country code or name — may return empty or null metadata
- Payment not processed — returns 402 Payment Required
- Service unavailable — returns 503 with no data

## How this service works

fx-concept-oracle: Conceptual cross-border exchange rate metadata provider for AI agents needing to track currency concepts without relying on external API keys.

## Output

Conceptual exchange rate metadata describing the currency relationship between two specified countries, including currency identifiers and cross-border FX concepts, without relying on live external data feeds or API keys.

## 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",
     "properties": {
      "countryA": {
       "type": "string"
      },
      "countryB": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fx-concept-oracle-c1dbecdf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
