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

Previous daily close

Get the close price for the most recent completed trading day across stocks, crypto, FX, and commodities, including the close, the UTC day it belongs to, symbol, and timestamp.

Format
JSON

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

Parameters

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

Response fields

Field
sstring
Symbol.
cstring
Close price, precision-normalized.
dstring (YYYY-MM-DD)
UTC day the close belongs to.
tint64 (epoch ms)
Timestamp of the close, Unix epoch milliseconds.

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 stocks | 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