GET
/v1/last/close/:venue/:symbolPrevious daily close
Get the close price for the most recent completed trading day across crypto, FX, and commodities, including the close, the UTC day it belongs to, symbol, and timestamp.
Parameters
ParameterDescription
Parameter
venuerequiredenum · path- crypto | forex | commodities.
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/close/crypto/BTCUSD"200OKapplication/json
{ "s": "BTCUSD", "c": "67450.5", "d": "2026-06-30", "t": 1751241600000}Loading runner…
First load onlyReference
Field keyDescription
Field key
- s
- symbol · string
- c
- close price · string (precision-normalized)
- d
- UTC day the close belongs to · string (YYYY-MM-DD)
- t
- timestamp of the close · int64 (Unix epoch ms)
Error responses
StatusCodeMeaning
- 400
invalid_symbolSymbol fails format validation for the venue.
{ "error": "invalid symbol for venue" } - 404
unknown_venueVenue path segment isn't one of crypto | forex | commodities.
{ "error": "unknown venue" } - 404
symbol_not_foundValid venue and symbol, but no close is available for it yet.
{ "error": "symbol not found" }