Fixer · Example Payload

Fixer Convertcurrency Example

Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

Fixer Convertcurrency Example is an example object payload from Fixer, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.apilayer.com/fixer/convert?from=GBP&to=JPY&amount=25",
    "headers": {
      "apikey": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "query": {
        "from": "GBP",
        "to": "JPY",
        "amount": 25
      },
      "info": {
        "timestamp": 1519328414,
        "rate": 148.972231
      },
      "historical": false,
      "date": "2024-09-13",
      "result": 3724.305775
    }
  }
}