Skip to main content
GET
/
api
/
markets
/
{symbol}
/
ohlc
OHLC candles
curl --request GET \
  --url https://core.api.dev.predictstreet.sde.adifoundation.ai/api/markets/{symbol}/ohlc
{
  "symbol": "<string>",
  "outcome": "<string>",
  "interval": "<string>",
  "from": "2023-11-07T05:31:56Z",
  "to": "2023-11-07T05:31:56Z",
  "candles": [
    {
      "bucketStart": "2023-11-07T05:31:56Z",
      "open": "<string>",
      "high": "<string>",
      "low": "<string>",
      "close": "<string>",
      "volume": "<string>",
      "tradeCount": 123
    }
  ]
}

Path Parameters

symbol
string
required

Market symbol, e.g. UAE-CUP-FINAL-20260425.

Query Parameters

interval
enum<string>
required
Available options:
s5,
s30,
m1,
m5,
m15,
h1,
h4,
d1
outcome
string
default:YES
from
string<date-time>
to
string<date-time>

Response

OK

symbol
string
outcome
string
interval
string
from
string<date-time>
to
string<date-time>
candles
object[]