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
{
  "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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.adipredictstreet.com/llms.txt

Use this file to discover all available pages before exploring further.

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