FastForex · Example Payload

Fx Quote

Example response from GET /fx/quote?pairs=EURUSD,GBPUSD

Currency ExchangeForexFinancial DataExchange RatesCryptocurrencyFX TradingHistorical DataReal-Time Data

Fx Quote is an example object payload from FastForex, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionvalue

Example Payload

Raw ↑
{
  "summary": "Live bid/ask FX quotes for EURUSD and GBPUSD",
  "description": "Example response from GET /fx/quote?pairs=EURUSD,GBPUSD",
  "value": {
    "quotes": {
      "EURUSD": {
        "bid": 1.2145,
        "ask": 1.2146,
        "tsp": 1739305030072,
        "size": 1
      },
      "GBPUSD": {
        "bid": 1.4145,
        "ask": 1.4146,
        "tsp": 1739305029908,
        "size": 1
      }
    },
    "ms": 8
  }
}