# GBP to JPY Live Forex Converter

> GBP to JPY Live Forex Converter 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 British Pounds (GBP) to Japanese Yen (JPY) at the current live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/gbp/jpy/gbp-jpy
- 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-jpy-live-forex-converter-1fec5d97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A-768ep-azmlRZd66-8dB

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-jpy-live-forex-converter-1fec5d97
```

Example prompt: How much is 250 British pounds worth in Japanese yen right now? Give me the live conversion rate.

## When to prefer this

Use this endpoint when you need a real-time GBP-to-JPY conversion with a specific amount and want back both the exchange rate and the computed result in a single call. Prefer this over a generic FX rate endpoint when you need the final converted value rather than just the raw rate.

## Known failure modes

- Invalid or missing amount parameter returns an error response
- Rate source unavailable may return stale or error data
- Non-numeric amount value causes a parsing error
- Payment not processed (402) means the x402 micro-payment was not completed

## How this service works

Convert GBP to JPY at live rate. Pass ?amount=100 for value in Japanese Yen. 英镑兑换日元换算。ポンドを円に換算。Convertir libra a yen. 파운드를 엔로 환전. gbp to jpy convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with: the source and target currency codes (from/to), the live exchange rate (rate), the timestamp of the rate (as_of), the input amount, the converted result in JPY, and the data source identifier.

## 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-jpy-live-forex-converter-1fec5d97/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)
