curl --request GET \
--url https://api.simmer.markets/api/sdk/wc/copy-leadersimport requests
url = "https://api.simmer.markets/api/sdk/wc/copy-leaders"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.simmer.markets/api/sdk/wc/copy-leaders', 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.simmer.markets/api/sdk/wc/copy-leaders",
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://api.simmer.markets/api/sdk/wc/copy-leaders"
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://api.simmer.markets/api/sdk/wc/copy-leaders")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.simmer.markets/api/sdk/wc/copy-leaders")
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{
"refreshed_at": "<string>",
"leaders": [
{
"wallet": "<string>",
"backtest_copy_pnl_usdc": 123,
"slippage_cost_rate_pct": 123,
"trade_count": 123,
"wc_total_pnl": 123
}
],
"forming": false,
"qualified_count": 0
}{
"error": "leader set not yet computed"
}WC Copy Leaders
Returns the cached curated World Cup copy-leader set.
Leaders are ranked by aggregated WC-market totalPnl (Phase 2), with copyability screened via the PolyNode copy-pnl leaderboard (excludes toxic wallets and MM-bot-scale traders).
When forming=true the leaderboard is still gathering data (fewer than the minimum qualified leaders). The payload still contains whatever leaders have qualified so far — clients should display the partial set with a note that the leaderboard is forming.
The set is kept warm two ways: a daily 02:00 UTC curation job, and lazy self-heal — if this read finds the cache missing or stale, it kicks a single-flight background refresh (SIM-3090) so a missed/eaten cron fire doesn’t leave the cache empty for the day. Self-heal never blocks the response.
Free-tier accessible — no Pro gate.
Returns 503 when the cache is not yet populated (a refresh is kicked; retry shortly).
curl --request GET \
--url https://api.simmer.markets/api/sdk/wc/copy-leadersimport requests
url = "https://api.simmer.markets/api/sdk/wc/copy-leaders"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.simmer.markets/api/sdk/wc/copy-leaders', 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.simmer.markets/api/sdk/wc/copy-leaders",
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://api.simmer.markets/api/sdk/wc/copy-leaders"
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://api.simmer.markets/api/sdk/wc/copy-leaders")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.simmer.markets/api/sdk/wc/copy-leaders")
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{
"refreshed_at": "<string>",
"leaders": [
{
"wallet": "<string>",
"backtest_copy_pnl_usdc": 123,
"slippage_cost_rate_pct": 123,
"trade_count": 123,
"wc_total_pnl": 123
}
],
"forming": false,
"qualified_count": 0
}{
"error": "leader set not yet computed"
}