Reward market detail
curl --request GET \
--url https://api.polynode.dev/v3/rewards/markets/{condition_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/rewards/markets/{condition_id}"
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/rewards/markets/{condition_id}', 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/rewards/markets/{condition_id}",
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/rewards/markets/{condition_id}"
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/rewards/markets/{condition_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/rewards/markets/{condition_id}")
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_bodyRewards
Reward Market Detail
Get public Polymarket reward configuration for one condition ID.
GET
/
v3
/
rewards
/
markets
/
{condition_id}
Reward market detail
curl --request GET \
--url https://api.polynode.dev/v3/rewards/markets/{condition_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/rewards/markets/{condition_id}"
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/rewards/markets/{condition_id}', 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/rewards/markets/{condition_id}",
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/rewards/markets/{condition_id}"
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/rewards/markets/{condition_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/rewards/markets/{condition_id}")
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_bodyReturns Polymarket’s public reward-market configuration for a single condition ID. This describes market reward settings; it is not per-wallet earned LP rewards.
Request
GET /v3/rewards/markets/{condition_id}
Path parameters
| Parameter | Type | Description |
|---|---|---|
condition_id | string | 0x + 64 hex condition ID |
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
sponsored | boolean | false | Filter to sponsored reward markets |
next_cursor | string | — | Pagination cursor |
Example
curl "https://api.polynode.dev/v3/rewards/markets/0x0001cb8c0b39aeb614ab9a43867595317f06ede9c011661513065c638fbbefda"
{
"source": "reward_market_config_detail",
"reward_semantics": "public Polymarket reward market configuration; this is not per-wallet earned LP rewards",
"data": {
"count": 1,
"data": [
{
"condition_id": "0x0001cb8c0b39aeb614ab9a43867595317f06ede9c011661513065c638fbbefda",
"native_daily_rate": 1,
"rewards_config": [
{
"asset_address": "0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB",
"rate_per_day": 1,
"start_date": "2026-02-17",
"end_date": "2500-12-31"
}
]
}
]
},
"elapsed_ms": 236
}
Response fields
| Field | Type | Description |
|---|---|---|
source | string | Dataset label |
reward_semantics | string | Meaning note |
data | object | Reward-market configuration response |
elapsed_ms | integer | Server-side request time in milliseconds |
Errors
| HTTP | When |
|---|---|
400 | Invalid condition ID format |
401 | Missing or invalid PolyNode API key |
502 | Temporary rewards data provider failure |
⌘I

