Polymarket Trades (Native)
curl --request GET \
--url https://api.arbiterapi.com/v1/polymarket/trades \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.arbiterapi.com/v1/polymarket/trades"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.arbiterapi.com/v1/polymarket/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://api.arbiterapi.com/v1/polymarket/trades",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://api.arbiterapi.com/v1/polymarket/trades"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.arbiterapi.com/v1/polymarket/trades")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arbiterapi.com/v1/polymarket/trades")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "trade_abc123",
"asset_id": "12345678901234567890",
"market_slug": "will-bitcoin-hit-100k-by-june-2026",
"conditionId": "0xb48621f7eba07b0a3eeabc6afb09ae42490239903997b9d412b0f69aeb040c8b",
"side": "BUY",
"outcome": "Yes",
"price": "0.65",
"size": "150.00",
"timestamp": 1774650000,
"transactionHash": "0xabc123def456789012345678901234567890abcdef",
"proxyWallet": "0x1234567890abcdef1234567890abcdef12345678"
}
],
"cursor": "abc123",
"has_more": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Polymarket
Polymarket Trades
Trade history on Polymarket with on-chain details including transaction hashes, wallet addresses, and outcome information.
GET
/
v1
/
polymarket
/
trades
Polymarket Trades (Native)
curl --request GET \
--url https://api.arbiterapi.com/v1/polymarket/trades \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.arbiterapi.com/v1/polymarket/trades"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.arbiterapi.com/v1/polymarket/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://api.arbiterapi.com/v1/polymarket/trades",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://api.arbiterapi.com/v1/polymarket/trades"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.arbiterapi.com/v1/polymarket/trades")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arbiterapi.com/v1/polymarket/trades")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "trade_abc123",
"asset_id": "12345678901234567890",
"market_slug": "will-bitcoin-hit-100k-by-june-2026",
"conditionId": "0xb48621f7eba07b0a3eeabc6afb09ae42490239903997b9d412b0f69aeb040c8b",
"side": "BUY",
"outcome": "Yes",
"price": "0.65",
"size": "150.00",
"timestamp": 1774650000,
"transactionHash": "0xabc123def456789012345678901234567890abcdef",
"proxyWallet": "0x1234567890abcdef1234567890abcdef12345678"
}
],
"cursor": "abc123",
"has_more": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I