sifting/io
GET/last/quote/:venue/:symbol

Last top-of-book quote

Get the latest top-of-book quote for supported stocks, FX, crypto, commodities, and DEX markets, including best bid, best ask, sizes, symbol, and timestamp.

Parameters

Parameter
venuerequiredenum · path
stocks | crypto | forex | commodities | dex.
symbolrequiredstring · path
6–12 uppercase alphanumeric, no separators.

Example

request · shell
curl -H "X-API-Key: $KEY" \
  "https://api.sifting.io/v1/last/quote/forex/GBPUSD"
200OKapplication/json
{  "s": "GBPUSD",  "b": "1.35054",  "B": "358245",  "a": "1.35097",  "A": "312930",  "t": 1779742456412}
Loading runner…
First load only

Reference

Field key
s
symbol · string
b
best bid price · string
B
best bid size · string
a
best ask price · string
A
best ask size · string
t
exchange timestamp · int64 (Unix epoch ms)

Error responses

  • 503stale_snapshot

    Quote snapshot is older than the staleness threshold (default 5s).

    {  "error": "stale_snapshot",  "last_t": 1746189100000,  "server_now": 1746189130000}

More in Live market data

See all