Credit Distributors
curl --request GET \
--url https://api.polynode.dev/v3/credits/distributors \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/credits/distributors"
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.polynode.dev/v3/credits/distributors', 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.polynode.dev/v3/credits/distributors",
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.polynode.dev/v3/credits/distributors"
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.polynode.dev/v3/credits/distributors")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/credits/distributors")
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{
"count": 25,
"distributors": [
{
"address": "0x3a9418b2651c8164db5ebc56f12008137865e0f7",
"first_ts": 1767809883,
"kind": "eoa",
"last_ts": 1782417259,
"status": "active",
"tokens": [
"usdce",
"pusd"
],
"total_paid": "111109788.638237",
"transfers": 907905,
"type": "maker_rebate"
},
{
"address": "0xfdb1b8dc7f5789a0c9a398026585b8b10fba5507",
"first_ts": 1782414209,
"kind": "eoa",
"last_ts": 1783730746,
"status": "active",
"tokens": [
"pusd"
],
"total_paid": "25939985.977000",
"transfers": 116986,
"type": "maker_rebate"
}
]
}Credits API Reference
Credit Distributors
The on-chain payout addresses behind each credit type, with lifetime totals — full transparency into where the money comes from.
GET
/
v3
/
credits
/
distributors
Credit Distributors
curl --request GET \
--url https://api.polynode.dev/v3/credits/distributors \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/credits/distributors"
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.polynode.dev/v3/credits/distributors', 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.polynode.dev/v3/credits/distributors",
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.polynode.dev/v3/credits/distributors"
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.polynode.dev/v3/credits/distributors")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/credits/distributors")
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{
"count": 25,
"distributors": [
{
"address": "0x3a9418b2651c8164db5ebc56f12008137865e0f7",
"first_ts": 1767809883,
"kind": "eoa",
"last_ts": 1782417259,
"status": "active",
"tokens": [
"usdce",
"pusd"
],
"total_paid": "111109788.638237",
"transfers": 907905,
"type": "maker_rebate"
},
{
"address": "0xfdb1b8dc7f5789a0c9a398026585b8b10fba5507",
"first_ts": 1782414209,
"kind": "eoa",
"last_ts": 1783730746,
"status": "active",
"tokens": [
"pusd"
],
"total_paid": "25939985.977000",
"transfers": 116986,
"type": "maker_rebate"
}
]
}The on-chain addresses Polymarket pays each program from, with lifetime totals per address.
Credit types
Every credits endpoint accepts these values intype/types:
| Value | Program |
|---|---|
reward | Liquidity rewards |
yield | Yield on balances |
maker_rebate | Maker rebates |
taker_rebate | Taker rebates |
referral_reward | Referral rewards |
types accepts a comma-separated set (types=maker_rebate,taker_rebate) or all.
Example
curl "https://api.polynode.dev/v3/credits/distributors" \
-H "x-api-key: $POLYNODE_API_KEY"
Authorizations
Response
200 - application/json
Success
⌘I

