Get Copytrades
curl --request GET \
--url https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade \
--header 'X-API-KEY: <api-key>'import requests
url = "https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade"
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade', 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/wallet/pol/{wallet_id}/copytrade",
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade"
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade")
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{
"success": true,
"response": [
{
"copytrade_id": "01234567-89ab-cdef-0123-456789abcdef",
"order_ids": [],
"target": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"mode": "COPY",
"spent": "0",
"settings": {
"filters": {
"resolution": {
"enabled": false,
"within_seconds": 0
},
"price": {
"enabled": false,
"min": null,
"max": null
},
"slippage": {
"enabled": true,
"max_cents": "5"
},
"labels": {
"enabled": false,
"allow": [],
"deny": []
},
"exposure": {
"enabled": false,
"max_market": null,
"max_event": null
},
"amount": {
"enabled": false,
"min": null,
"max": null
}
},
"buy": {
"enabled": true,
"insufficient_funds": "BUY_MAX",
"sizing": {
"type": "FIXED",
"amount": "10"
},
"total": {
"type": "NONE"
}
},
"sell": {
"enabled": true,
"insufficient_shares": "SELL_MAX",
"sizing": {
"type": "PERCENTAGE",
"percent": "1"
},
"take_profit": {
"enabled": false,
"percent": null
}
}
},
"status": "ACTIVE",
"created_at": "2026-01-01T00:00:00",
"updated_at": "2026-01-01T00:00:00"
}
]
}Polygon Copytrades
Get Copytrades
Get Polymarket copytrade configurations for a Polygon wallet.
Get Copytrades
curl --request GET \
--url https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade \
--header 'X-API-KEY: <api-key>'import requests
url = "https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade"
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade', 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/wallet/pol/{wallet_id}/copytrade",
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade"
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://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade")
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{
"success": true,
"response": [
{
"copytrade_id": "01234567-89ab-cdef-0123-456789abcdef",
"order_ids": [],
"target": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"mode": "COPY",
"spent": "0",
"settings": {
"filters": {
"resolution": {
"enabled": false,
"within_seconds": 0
},
"price": {
"enabled": false,
"min": null,
"max": null
},
"slippage": {
"enabled": true,
"max_cents": "5"
},
"labels": {
"enabled": false,
"allow": [],
"deny": []
},
"exposure": {
"enabled": false,
"max_market": null,
"max_event": null
},
"amount": {
"enabled": false,
"min": null,
"max": null
}
},
"buy": {
"enabled": true,
"insufficient_funds": "BUY_MAX",
"sizing": {
"type": "FIXED",
"amount": "10"
},
"total": {
"type": "NONE"
}
},
"sell": {
"enabled": true,
"insufficient_shares": "SELL_MAX",
"sizing": {
"type": "PERCENTAGE",
"percent": "1"
},
"take_profit": {
"enabled": false,
"percent": null
}
}
},
"status": "ACTIVE",
"created_at": "2026-01-01T00:00:00",
"updated_at": "2026-01-01T00:00:00"
}
]
}⌘I