Get Kalshi Market Trades
curl --request GET \
--url https://synthesis.trade/api/v1/kalshi/market/{market_id}/tradesimport requests
url = "https://synthesis.trade/api/v1/kalshi/market/{market_id}/trades"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/trades")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/kalshi/market/{market_id}/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{
"success": true,
"response": [
{
"trade_id": "f6a7b8c9-d0e1-2345-f678-90abcdef1234",
"market_id": "KXBTC-25-T100000",
"outcome": "Yes",
"side": true,
"amount": "100.000",
"shares": "175.000",
"price": "0.570",
"created_at": "2026-01-01T00:00:00"
}
]
}Kalshi
Get Kalshi Market Trades
Get recent trades for a Kalshi market.
Get Kalshi Market Trades
curl --request GET \
--url https://synthesis.trade/api/v1/kalshi/market/{market_id}/tradesimport requests
url = "https://synthesis.trade/api/v1/kalshi/market/{market_id}/trades"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/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://synthesis.trade/api/v1/kalshi/market/{market_id}/trades")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/kalshi/market/{market_id}/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{
"success": true,
"response": [
{
"trade_id": "f6a7b8c9-d0e1-2345-f678-90abcdef1234",
"market_id": "KXBTC-25-T100000",
"outcome": "Yes",
"side": true,
"amount": "100.000",
"shares": "175.000",
"price": "0.570",
"created_at": "2026-01-01T00:00:00"
}
]
}⌘I