Get Your Incentive Earnings
curl --request GET \
--url https://gateway.polymarket.us/v1/incentives/earningsimport requests
url = "https://gateway.polymarket.us/v1/incentives/earnings"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.polymarket.us/v1/incentives/earnings', 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://gateway.polymarket.us/v1/incentives/earnings",
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://gateway.polymarket.us/v1/incentives/earnings"
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://gateway.polymarket.us/v1/incentives/earnings")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.polymarket.us/v1/incentives/earnings")
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{
"rewards": [
{
"reward": 123,
"programType": "<string>",
"marketSlug": "<string>",
"date": "<string>",
"status": "<string>"
}
]
}Get Your Incentive Earnings
Returns rewards earned by the authenticated caller. Each entry sums all payouts for a single (market, date) pair, where date is in Eastern Time.
GET
/
v1
/
incentives
/
earnings
Get Your Incentive Earnings
curl --request GET \
--url https://gateway.polymarket.us/v1/incentives/earningsimport requests
url = "https://gateway.polymarket.us/v1/incentives/earnings"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.polymarket.us/v1/incentives/earnings', 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://gateway.polymarket.us/v1/incentives/earnings",
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://gateway.polymarket.us/v1/incentives/earnings"
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://gateway.polymarket.us/v1/incentives/earnings")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.polymarket.us/v1/incentives/earnings")
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{
"rewards": [
{
"reward": 123,
"programType": "<string>",
"marketSlug": "<string>",
"date": "<string>",
"status": "<string>"
}
]
}Query Parameters
Start date filter (YYYY-MM-DD). Defaults to the program launch date.
End date filter (YYYY-MM-DD). Omit for through-today.
Filter by market slug.
Filter by program type (e.g. liquidityProgram).
Response
200 - application/json
A successful response.
Show child attributes
Show child attributes
⌘I