GET
/last/trade/:venue/:symbolLast trade
Get the latest trade data for supported stocks, FX, crypto, commodities, and DEX markets, including price, size, symbol, and timestamp.
Parameters
ParameterDescription
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 onlyReference
Field keyDescription
Field key
- s
- symbol · string
- p
- last trade price · string
- P
- last trade size · string
- t
- exchange timestamp · int64 (Unix epoch ms)
Error responses
StatusCodeMeaning
- 503
stale_snapshotLast 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}