Fixer · Example Payload

Fixer Gethistorical Example

Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

Fixer Gethistorical 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/2013-12-24?base=GBP&symbols=USD,CAD,EUR",
    "headers": {
      "apikey": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "historical": true,
      "date": "2013-12-24",
      "timestamp": 1387929599,
      "base": "GBP",
      "rates": {
        "USD": 1.636492,
        "EUR": 1.196476,
        "CAD": 1.739516
      }
    }
  }
}