Fixer · Example Payload

Fixer Getlatest Example

Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

Fixer Getlatest 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/latest?base=USD&symbols=AUD,CAD,EUR,GBP,JPY",
    "headers": {
      "apikey": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "timestamp": 1519296206,
      "base": "USD",
      "date": "2024-09-13",
      "rates": {
        "AUD": 1.566015,
        "CAD": 1.560132,
        "EUR": 0.91059,
        "GBP": 0.76603,
        "JPY": 132.360679
      }
    }
  }
}