Skip to main content
GET
/
api
/
markets
/
{symbol}
/
price-history
Time-series price points for the chart UI
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history
import requests

url = "https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history")
.asString();
require 'uri'
require 'net/http'

url = URI("https://core-api.adipredictstreet.com/api/markets/{symbol}/price-history")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "symbol": "WC26-FIN-ARG-FRA",
  "outcome": "YES",
  "from": "2023-11-07T05:31:56Z",
  "to": "2023-11-07T05:31:56Z",
  "points": [
    {
      "ts": "2026-05-09T15:00:00.000Z",
      "price": "0.530000"
    }
  ]
}
{
"error": {
"code": "bad_request",
"message": "<string>",
"details": {},
"trace_id": "<string>"
},
"status": 400
}
{
"error": {
"code": "bad_request",
"message": "<string>",
"details": {},
"trace_id": "<string>"
},
"status": 400
}

Path Parameters

symbol
string
required

Market symbol, e.g. UAE-CUP-FINAL-20260425. Used by sub-resource endpoints (/orderbook, /trades, /ohlc, /traders). The root market-detail endpoint /api/markets/{slug} accepts the slug instead — see MarketSlug.

Query Parameters

range
enum<string>
required

live = last 5 min @ 1s buckets · 1h = last 1h @ 1m · 1d = last 24h @ 30m · 1w = last 7d @ 6h · 1m = last 30d @ 12h.

Available options:
live,
1h,
1d,
1w,
1m
outcome
string
default:YES

Outcome to project. Binary markets accept YES / NO; N-ary markets accept the integer index (0-based). Defaults to YES.

Response

OK

symbol
string
required
Example:

"WC26-FIN-ARG-FRA"

outcome
string
required

Echoed outcome query parameter (label or raw integer).

Example:

"YES"

range
enum<string>
required
Available options:
live,
1h,
1d,
1w,
1m
from
string<date-time>
required

Window lower bound (inclusive).

to
string<date-time>
required

Window upper bound (inclusive).

points
object[]
required