Skip to main content
GET
/
api
/
markets
/
{symbol}
/
trades
Public trade tape
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/markets/{symbol}/trades
import requests

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

response = requests.get(url)

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

fetch('https://core-api.adipredictstreet.com/api/markets/{symbol}/trades', 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}/trades",
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}/trades"

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}/trades")
.asString();
require 'uri'
require 'net/http'

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

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": "<string>",
  "trades": [
    {
      "id": "<string>",
      "price": "<string>",
      "quantity": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "settledAt": "2023-11-07T05:31:56Z",
      "maker": "<string>",
      "taker": "<string>",
      "makerFee": "<string>",
      "takerFee": "<string>",
      "outcomeIndex": 123,
      "outcomeLabel": "<string>"
    }
  ]
}

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

limit
integer
default:50

Page size. < 1 (including 0 / negatives) → 400 invalid_limit. Server silently clamps values above maximum to maximum.

Required range: 1 <= x <= 200
before
string<date-time>

ISO-8601 timestamp; returns trades strictly older than this (exclusive). Pair with limit to page backwards. Combine with after for a bounded (after, before) range. Unknown pagination params (offset, page, cursor) are silently ignored — this endpoint is time-cursor only.

after
string<date-time>

ISO-8601 timestamp; returns trades strictly newer than this (exclusive). Honoured only on sort=time (default). Pair with before for a bounded (after, before) range — typical use case is WS-vs-REST reconcile after a disconnect (after = last seen createdAt).

Response

200 - application/json

OK

symbol
string
required
trades
object[]
required