Search trades
curl --request POST \
--url https://api.prod.polymarketexchange.com/v1/report/trades/search \
--header 'Content-Type: application/json' \
--data '
{
"pageSize": 123,
"pageToken": "<string>",
"orderId": "<string>",
"tradeId": "<string>",
"execId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"symbol": "<string>",
"accounts": [
"<string>"
],
"states": [],
"tradeLinkId": "<string>"
}
'import requests
url = "https://api.prod.polymarketexchange.com/v1/report/trades/search"
payload = {
"pageSize": 123,
"pageToken": "<string>",
"orderId": "<string>",
"tradeId": "<string>",
"execId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"symbol": "<string>",
"accounts": ["<string>"],
"states": [],
"tradeLinkId": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
pageSize: 123,
pageToken: '<string>',
orderId: '<string>',
tradeId: '<string>',
execId: '<string>',
startTime: '2023-11-07T05:31:56Z',
endTime: '2023-11-07T05:31:56Z',
symbol: '<string>',
accounts: ['<string>'],
states: [],
tradeLinkId: '<string>'
})
};
fetch('https://api.prod.polymarketexchange.com/v1/report/trades/search', 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.prod.polymarketexchange.com/v1/report/trades/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pageSize' => 123,
'pageToken' => '<string>',
'orderId' => '<string>',
'tradeId' => '<string>',
'execId' => '<string>',
'startTime' => '2023-11-07T05:31:56Z',
'endTime' => '2023-11-07T05:31:56Z',
'symbol' => '<string>',
'accounts' => [
'<string>'
],
'states' => [
],
'tradeLinkId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.prod.polymarketexchange.com/v1/report/trades/search"
payload := strings.NewReader("{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.prod.polymarketexchange.com/v1/report/trades/search")
.header("Content-Type", "application/json")
.body("{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prod.polymarketexchange.com/v1/report/trades/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"trade": [
{
"id": "<string>",
"aggressor": {
"id": "<string>",
"order": {
"id": "<string>",
"orderQty": "<string>",
"symbol": "<string>",
"clordId": "<string>",
"account": "<string>",
"cumQty": "<string>",
"avgPx": "<string>",
"leavesQty": "<string>",
"participant": "<string>",
"price": "<string>",
"insertTime": "2023-11-07T05:31:56Z",
"stopPrice": "<string>",
"minQty": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"allOrNone": true,
"crossId": "<string>",
"hostCrossId": "<string>",
"submittingParticipant": "<string>",
"clientAccountId": "<string>",
"clientParticipantId": "<string>",
"parentOrderId": "<string>",
"commissionsBasisPoints": "<string>",
"participateDontInitiate": true,
"cashOrderQty": "<string>",
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"lastTradeId": "<string>",
"commissionNotionalTotalCollected": "<string>",
"ignorePriceValidityChecks": true,
"lastTransactTime": "2023-11-07T05:31:56Z",
"makerCommissionsBasisPoints": "<string>",
"fractionalQuantityScale": "<string>",
"priceToQuantityFilled": {}
},
"lastShares": "<string>",
"lastPx": "<string>",
"text": "<string>",
"transactTime": "2023-11-07T05:31:56Z",
"legPrices": [
{
"symbol": "<string>",
"anchor": true,
"px": "<string>",
"qty": "<string>",
"side": "<string>",
"referencePx": "<string>"
}
],
"tradeId": "<string>",
"aggressor": true,
"commissionNotionalCollected": "<string>",
"traceId": "<string>",
"commissionSpreadPx": "<string>",
"transactTradeDate": {
"year": 123,
"month": 123,
"day": 123
}
},
"passive": {
"id": "<string>",
"order": {
"id": "<string>",
"orderQty": "<string>",
"symbol": "<string>",
"clordId": "<string>",
"account": "<string>",
"cumQty": "<string>",
"avgPx": "<string>",
"leavesQty": "<string>",
"participant": "<string>",
"price": "<string>",
"insertTime": "2023-11-07T05:31:56Z",
"stopPrice": "<string>",
"minQty": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"allOrNone": true,
"crossId": "<string>",
"hostCrossId": "<string>",
"submittingParticipant": "<string>",
"clientAccountId": "<string>",
"clientParticipantId": "<string>",
"parentOrderId": "<string>",
"commissionsBasisPoints": "<string>",
"participateDontInitiate": true,
"cashOrderQty": "<string>",
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"lastTradeId": "<string>",
"commissionNotionalTotalCollected": "<string>",
"ignorePriceValidityChecks": true,
"lastTransactTime": "2023-11-07T05:31:56Z",
"makerCommissionsBasisPoints": "<string>",
"fractionalQuantityScale": "<string>",
"priceToQuantityFilled": {}
},
"lastShares": "<string>",
"lastPx": "<string>",
"text": "<string>",
"transactTime": "2023-11-07T05:31:56Z",
"legPrices": [
{
"symbol": "<string>",
"anchor": true,
"px": "<string>",
"qty": "<string>",
"side": "<string>",
"referencePx": "<string>"
}
],
"tradeId": "<string>",
"aggressor": true,
"commissionNotionalCollected": "<string>",
"traceId": "<string>",
"commissionSpreadPx": "<string>",
"transactTradeDate": {
"year": 123,
"month": 123,
"day": 123
}
},
"text": "<string>",
"tradeLinkId": "<string>",
"metadata": {}
}
],
"nextPageToken": "<string>"
}Searches for exchange trades using the given details to filter
POST
/
v1
/
report
/
trades
/
search
Search trades
curl --request POST \
--url https://api.prod.polymarketexchange.com/v1/report/trades/search \
--header 'Content-Type: application/json' \
--data '
{
"pageSize": 123,
"pageToken": "<string>",
"orderId": "<string>",
"tradeId": "<string>",
"execId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"symbol": "<string>",
"accounts": [
"<string>"
],
"states": [],
"tradeLinkId": "<string>"
}
'import requests
url = "https://api.prod.polymarketexchange.com/v1/report/trades/search"
payload = {
"pageSize": 123,
"pageToken": "<string>",
"orderId": "<string>",
"tradeId": "<string>",
"execId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"symbol": "<string>",
"accounts": ["<string>"],
"states": [],
"tradeLinkId": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
pageSize: 123,
pageToken: '<string>',
orderId: '<string>',
tradeId: '<string>',
execId: '<string>',
startTime: '2023-11-07T05:31:56Z',
endTime: '2023-11-07T05:31:56Z',
symbol: '<string>',
accounts: ['<string>'],
states: [],
tradeLinkId: '<string>'
})
};
fetch('https://api.prod.polymarketexchange.com/v1/report/trades/search', 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.prod.polymarketexchange.com/v1/report/trades/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pageSize' => 123,
'pageToken' => '<string>',
'orderId' => '<string>',
'tradeId' => '<string>',
'execId' => '<string>',
'startTime' => '2023-11-07T05:31:56Z',
'endTime' => '2023-11-07T05:31:56Z',
'symbol' => '<string>',
'accounts' => [
'<string>'
],
'states' => [
],
'tradeLinkId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.prod.polymarketexchange.com/v1/report/trades/search"
payload := strings.NewReader("{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.prod.polymarketexchange.com/v1/report/trades/search")
.header("Content-Type", "application/json")
.body("{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prod.polymarketexchange.com/v1/report/trades/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"pageSize\": 123,\n \"pageToken\": \"<string>\",\n \"orderId\": \"<string>\",\n \"tradeId\": \"<string>\",\n \"execId\": \"<string>\",\n \"startTime\": \"2023-11-07T05:31:56Z\",\n \"endTime\": \"2023-11-07T05:31:56Z\",\n \"symbol\": \"<string>\",\n \"accounts\": [\n \"<string>\"\n ],\n \"states\": [],\n \"tradeLinkId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"trade": [
{
"id": "<string>",
"aggressor": {
"id": "<string>",
"order": {
"id": "<string>",
"orderQty": "<string>",
"symbol": "<string>",
"clordId": "<string>",
"account": "<string>",
"cumQty": "<string>",
"avgPx": "<string>",
"leavesQty": "<string>",
"participant": "<string>",
"price": "<string>",
"insertTime": "2023-11-07T05:31:56Z",
"stopPrice": "<string>",
"minQty": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"allOrNone": true,
"crossId": "<string>",
"hostCrossId": "<string>",
"submittingParticipant": "<string>",
"clientAccountId": "<string>",
"clientParticipantId": "<string>",
"parentOrderId": "<string>",
"commissionsBasisPoints": "<string>",
"participateDontInitiate": true,
"cashOrderQty": "<string>",
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"lastTradeId": "<string>",
"commissionNotionalTotalCollected": "<string>",
"ignorePriceValidityChecks": true,
"lastTransactTime": "2023-11-07T05:31:56Z",
"makerCommissionsBasisPoints": "<string>",
"fractionalQuantityScale": "<string>",
"priceToQuantityFilled": {}
},
"lastShares": "<string>",
"lastPx": "<string>",
"text": "<string>",
"transactTime": "2023-11-07T05:31:56Z",
"legPrices": [
{
"symbol": "<string>",
"anchor": true,
"px": "<string>",
"qty": "<string>",
"side": "<string>",
"referencePx": "<string>"
}
],
"tradeId": "<string>",
"aggressor": true,
"commissionNotionalCollected": "<string>",
"traceId": "<string>",
"commissionSpreadPx": "<string>",
"transactTradeDate": {
"year": 123,
"month": 123,
"day": 123
}
},
"passive": {
"id": "<string>",
"order": {
"id": "<string>",
"orderQty": "<string>",
"symbol": "<string>",
"clordId": "<string>",
"account": "<string>",
"cumQty": "<string>",
"avgPx": "<string>",
"leavesQty": "<string>",
"participant": "<string>",
"price": "<string>",
"insertTime": "2023-11-07T05:31:56Z",
"stopPrice": "<string>",
"minQty": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"allOrNone": true,
"crossId": "<string>",
"hostCrossId": "<string>",
"submittingParticipant": "<string>",
"clientAccountId": "<string>",
"clientParticipantId": "<string>",
"parentOrderId": "<string>",
"commissionsBasisPoints": "<string>",
"participateDontInitiate": true,
"cashOrderQty": "<string>",
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"lastTradeId": "<string>",
"commissionNotionalTotalCollected": "<string>",
"ignorePriceValidityChecks": true,
"lastTransactTime": "2023-11-07T05:31:56Z",
"makerCommissionsBasisPoints": "<string>",
"fractionalQuantityScale": "<string>",
"priceToQuantityFilled": {}
},
"lastShares": "<string>",
"lastPx": "<string>",
"text": "<string>",
"transactTime": "2023-11-07T05:31:56Z",
"legPrices": [
{
"symbol": "<string>",
"anchor": true,
"px": "<string>",
"qty": "<string>",
"side": "<string>",
"referencePx": "<string>"
}
],
"tradeId": "<string>",
"aggressor": true,
"commissionNotionalCollected": "<string>",
"traceId": "<string>",
"commissionSpreadPx": "<string>",
"transactTradeDate": {
"year": 123,
"month": 123,
"day": 123
}
},
"text": "<string>",
"tradeLinkId": "<string>",
"metadata": {}
}
],
"nextPageToken": "<string>"
}Body
application/json
TradeState indicates the state of a trade.
Available options:
TRADE_STATE_NEW, TRADE_STATE_CLEARED, TRADE_STATE_BUSTED, TRADE_STATE_INFLIGHT, TRADE_STATE_PENDING_RISK, TRADE_STATE_PENDING_CLEARED, TRADE_STATE_REJECTED, TRADE_STATE_CLEARING_ACKNOWLEDGED, TRADE_STATE_RETRY_REQUEST ⌘I