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

> GBP to EUR 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 given amount from British Pounds (GBP) to Euros (EUR) at the current live exchange rate.

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/gbp/eur/gbp-eur
- 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/gbp-to-eur-currency-converter-api-x402node-dev-cfa3e9f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S2bJUvv1tfcQa3ex5sjW9

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

Example prompt: How many euros would I get for 250 British pounds right now — can you convert that at the live rate?

## When to prefer this

Use this endpoint when you specifically need to convert British Pounds to Euros at a live market rate and want a structured JSON response including the rate, result, and timestamp. Prefer this over a generic currency converter when the GBP-to-EUR pair is the only conversion needed and low per-call cost ($0.004 USDC) is acceptable.

## Known failure modes

- Missing or invalid 'amount' parameter returns an error or zero result
- Service unavailable if upstream forex rate provider is down
- Non-numeric amount value may cause a bad request error
- Rate may be slightly delayed if market data feed has latency

## How this service works

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

## Output

Returns a JSON object with: 'from' (GBP), 'to' (EUR), 'amount' (input value), 'result' (converted EUR amount), 'rate' (current GBP/EUR exchange rate), 'as_of' (timestamp of rate), and 'source' (rate data provider).

## 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/gbp-to-eur-currency-converter-api-x402node-dev-cfa3e9f1/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)
