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

Last trade

Get the latest trade data for supported stocks, FX, crypto, commodities, and DEX markets, including price, size, symbol, and timestamp.

Parameters

Parameter
venuerequiredenum · path
stocks | crypto | forex | commodities | dex.
symbolrequiredstring · path
6–12 alphanumeric characters, no separators (e.g. BTCUSD). Case-insensitive.

Example

request · shell
curl -H "X-API-Key: $KEY" \
  "https://api.sifting.io/v1/last/trade/crypto/BTCUSD"
200OKapplication/json
{  "s": "BTCUSD",  "p": "67234.5",  "P": "0.00432",  "t": 1746189123456}
Loading runner…
First load only

Reference

Field key
s
symbol · string
p
last trade price · string
P
last trade size · string
t
exchange timestamp · int64 (Unix epoch ms)

Error responses

  • 503stale_snapshot

    Last tick is older than the staleness threshold (default 5s). Body carries last_t and server_now so clients can decide to retry or switch to WebSocket.

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

More in Live market data

See all