sifting/io
GET/v1/last/close/:venue/:symbol

Previous 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

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 only

Reference

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

  • 400invalid_symbol

    Symbol fails format validation for the venue.

    { "error": "invalid symbol for venue" }
  • 404unknown_venue

    Venue path segment isn't one of crypto | forex | commodities.

    { "error": "unknown venue" }
  • 404symbol_not_found

    Valid venue and symbol, but no close is available for it yet.

    { "error": "symbol not found" }

More in Live market data

See all