Skip to main content
GET
/
api
/
sol
/
tokens
/
ohlc
/
{tokenMint}
OHLC candlestick data
curl --request GET \
  --url 'https://de.raze.sh/api/sol/tokens/ohlc/{tokenMint}?apiKey='
{
  "data": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "token_mint": "<string>",
      "open": "<string>",
      "high": "<string>",
      "low": "<string>",
      "close": "<string>",
      "volume": "<string>",
      "trades": "<string>",
      "sol_price": "<string>"
    }
  ],
  "oldestTimestamp": 123,
  "count": 123
}

Authorizations

apiKey
string
query
required

Path Parameters

tokenMint
string
required

Query Parameters

limit
integer
default:1000
Required range: 1 <= x <= 10000
from
integer

Start timestamp (Unix seconds)

to
integer

End timestamp (Unix seconds)

Response

Success

data
object[]
oldestTimestamp
integer | null

Unix timestamp in seconds for pagination

count
integer