Wallet redemptions (onchain)
curl --request GET \
--url https://api.polynode.dev/v2/onchain/wallets/{address}/redemptionsimport requests
url = "https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions', 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/v2/onchain/wallets/{address}/redemptions",
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.polynode.dev/v2/onchain/wallets/{address}/redemptions"
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.polynode.dev/v2/onchain/wallets/{address}/redemptions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions")
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_bodyOnchain V2 (legacy)
Wallet Redemptions
All onchain redemptions for a wallet. See who cashed out, when, and how much.
GET
/
v2
/
onchain
/
wallets
/
{address}
/
redemptions
Wallet redemptions (onchain)
curl --request GET \
--url https://api.polynode.dev/v2/onchain/wallets/{address}/redemptionsimport requests
url = "https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions', 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/v2/onchain/wallets/{address}/redemptions",
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.polynode.dev/v2/onchain/wallets/{address}/redemptions"
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.polynode.dev/v2/onchain/wallets/{address}/redemptions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v2/onchain/wallets/{address}/redemptions")
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_bodyReturns every onchain redemption for a wallet. A redemption is when a user claims their payout after a market resolves. This data is not available through Polymarket’s API. Each redemption is enriched with market metadata.
Request
GET /v2/onchain/wallets/{address}/redemptions?limit=100&offset=0
| Parameter | Type | Location | Description |
|---|---|---|---|
address | string | path | Wallet address (0x-prefixed, 40 hex chars) |
limit | integer | query | Max results (default 100, max 1000) |
offset | integer | query | Skip first N results for pagination |
Response
{
"wallet": "0x2f5653a3761f65c5a299f9839eadbd4d4d679ffa",
"source": "onchain",
"count": 1,
"offset": 0,
"total_payout": 5,
"redemptions": [
{
"id": "0x655555bc5091e07a453667c20afe4af5df2e099311670abf86a718dc48998b53_0x678",
"timestamp": 1774749134,
"condition": "0xedb2d159f7917cedf2ca9fe5b2fe70ba5db7fee23eff951ce8d7f96983cf6a66",
"index_sets": ["1", "2"],
"payout": 5,
"market": "Bitcoin Up or Down - March 28, 9:45PM-9:50PM ET",
"slug": "btc-updown-5m-1774748700",
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/BTC+fullsize.png"
}
]
}
| Field | Type | Description |
|---|---|---|
total_payout | number | Sum of all payout amounts (USDC) in this page |
redemptions[].timestamp | number | Unix timestamp of the redemption |
redemptions[].condition | string | Condition ID of the resolved market |
redemptions[].index_sets | array | Outcome index sets redeemed |
redemptions[].payout | number | USDC payout amount (0 = losing position redeemed) |
redemptions[].market | string | Market question |
redemptions[].slug | string | Market slug |
redemptions[].image | string | Market image URL |
Example
curl "https://api.polynode.dev/v2/onchain/wallets/0x2f5653a3761f65c5a299f9839eadbd4d4d679ffa/redemptions?limit=10" \
-H "x-api-key: YOUR_KEY"
⌘I

