# Energy Bill Toolkit FX Quote Audit

> Energy Bill Toolkit FX Quote Audit is a paid API for AI agents from energybilltoolkit.co.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Audits a foreign exchange quote by checking whether the quoted target amount, fee, and exchange rate are consistent and fair for a given currency pair and source amount.

## Facts

- Endpoint: POST https://energybilltoolkit.co.uk/decision-tools/api/fx/quote-audit
- 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/energy-bill-toolkit-fx-quote-audit-fe09b6cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m6KPvVKEBKv6FBIyZVjhV

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 energy-bill-toolkit-fx-quote-audit-fe09b6cc -d '<json body>'
```

Example prompt: Can you audit this FX quote for me — I'm sending 1000 GBP and was quoted 1145 EUR with a fee of 8.50? I want to know if the rate and fee look fair.

## When to prefer this

Use this endpoint when you need a lightweight, per-transaction audit of an FX quote before committing to a currency conversion — particularly useful in agentic payment workflows, remittance pipelines, or compliance checks where you want to verify that a quoted rate, fee, and target amount are internally consistent and not misleading. At $0.01 per call it is cost-effective for high-frequency screening.

## Known failure modes

- Missing required fields (sourceAmount, sourceCurrency, targetCurrency) return validation errors
- Unsupported or invalid 3-letter currency codes cause rejection
- sourceAmount of zero or negative is rejected by schema
- Network or service availability issues may return 5xx errors
- Ambiguous or unrealistic quote values may return inconclusive audit results

## How this service works

Pay-per-use EBT screening endpoint

## Output

Returns an audit assessment of the FX quote, indicating whether the quoted target amount, fee, and implied exchange rate are consistent, fair, and within expected bounds for the given currency pair and source amount. May include flags, confidence signals, or specific discrepancy details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "fee": {
   "type": "number",
   "minimum": 0
  },
  "sourceAmount": {
   "type": "number",
   "exclusiveMinimum": 0
  },
  "sourceCurrency": {
   "type": "string",
   "maxLength": 3,
   "minLength": 3
  },
  "targetCurrency": {
   "type": "string",
   "maxLength": 3,
   "minLength": 3
  },
  "quotedTargetAmount": {
   "type": "number",
   "minimum": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/energy-bill-toolkit-fx-quote-audit-fe09b6cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from energybilltoolkit.co.uk](https://www.zero.xyz/host/energybilltoolkit.co.uk/llms.txt)
