# EUR to GBP Currency Converter (api.x402node.dev)

> EUR to GBP Currency Converter (api.x402node.dev) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a specified amount of Euros (EUR) to British Pounds (GBP) using a live exchange rate.

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/eur/gbp/eur-gbp
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eur-to-gbp-currency-converter-api-x402node-dev-64c6abd8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V5fUdNh31xsYqauwSoLXB

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 eur-to-gbp-currency-converter-api-x402node-dev-64c6abd8
```

Example prompt: How much is 500 euros in British pounds right now? Give me the live EUR to GBP rate and the converted amount.

## When to prefer this

Use this endpoint when you need a real-time EUR to GBP conversion with a specific amount and want a structured response including the rate timestamp and data source. Prefer this over a generic forex API when integrating with x402-payment-enabled agent pipelines that need live European to British currency conversion specifically.

## Known failure modes

- Invalid or non-numeric amount parameter returns an error
- Upstream forex data provider unavailable causing stale or missing rate
- Payment failure (x402 protocol) blocks the request
- Amount parameter missing defaults to a base conversion (amount=1 or similar)
- Network timeout from the underlying rate source

## How this service works

Convert EUR to GBP at live rate. Pass ?amount=100 for value in British Pound. 欧元兑换英镑换算。ユーロをポンドに換算。Convertir euro a libra. 유로를 파운드로 환전. eur to gbp convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source currency (from: 'EUR'), target currency (to: 'GBP'), the live exchange rate (rate), the converted amount (result), the input amount (amount), a timestamp indicating when the rate was fetched (as_of), and the data source (source).

## 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": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的金额，如 ?amount=100"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eur-to-gbp-currency-converter-api-x402node-dev-64c6abd8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
