Skip to main content
GET
/
v2
/
paxosRewards
/
vaultRewards
List vault rewards (net of fees)
curl --request GET \
  --url https://api.paxoslabs.com/v2/paxosRewards/vaultRewards \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.paxoslabs.com/v2/paxosRewards/vaultRewards"

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.paxoslabs.com/v2/paxosRewards/vaultRewards', 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.paxoslabs.com/v2/paxosRewards/vaultRewards",
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.paxoslabs.com/v2/paxosRewards/vaultRewards"

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.paxoslabs.com/v2/paxosRewards/vaultRewards")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.paxoslabs.com/v2/paxosRewards/vaultRewards")

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
{
  "vaultRewards": [
    {
      "id": "01J9Z2P3Q4R5S6T7U8V9W0X1Y2",
      "txHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
      "decimals": 6,
      "createdAt": "2026-05-01T00:00:00Z",
      "chainId": 1,
      "realizedYield": "12.345678",
      "cumulativeYield": "125.50",
      "realizedApy": "4.27",
      "usdgBalanceBase": "25000000"
    }
  ],
  "nextPageToken": "eyJjdXJzb3IiOiJhYmMifQ=="
}
{
"error": {
"code": 400,
"message": "Invalid filter syntax.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.paxoslabs.dev/errors/BadRequest",
"fieldViolations": [
{
"field": "filter",
"description": "vaultAddress 0x0x is an invalid hex address."
}
]
}
]
}
}
{
"error": {
"code": 400,
"message": "Invalid filter syntax.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.paxoslabs.dev/errors/BadRequest",
"fieldViolations": [
{
"field": "filter",
"description": "vaultAddress 0x0x is an invalid hex address."
}
]
}
]
}
}
{
"error": {
"code": 400,
"message": "Invalid filter syntax.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.paxoslabs.dev/errors/BadRequest",
"fieldViolations": [
{
"field": "filter",
"description": "vaultAddress 0x0x is an invalid hex address."
}
]
}
]
}
}

Authorizations

x-api-key
string
header
required

API key in format: pxl_<public_id>_

Query Parameters

pageSize
number
default:25

Max items per page. Default 25, max 100.

Required range: 1 <= x <= 100
Example:

25

pageToken
string

Opaque cursor from a prior nextPageToken.

vaultAddress
string
required

Vault contract address (0x + 40 hex chars).

Example:

"0x0000000000000000000000000000000000000001"

chainId
number
required

EVM chain ID.

Example:

1

startTime
string

Inclusive lower bound on the distribution snapshot timestamp. RFC 3339 UTC. When both startTime and endTime are omitted, defaults to (now - 14 days, now).

Example:

"2026-01-01T00:00:00Z"

endTime
string

Inclusive upper bound on the distribution snapshot timestamp. RFC 3339 UTC. When both startTime and endTime are omitted, defaults to (now - 14 days, now).

Example:

"2026-12-31T23:59:59Z"

Response

List of vault rewards (net of fees).

vaultRewards
object[]
required

Time-series list of vault rewards, net of fees.

nextPageToken
string

Opaque cursor for the next page. Omitted when there are no further results.

Example:

"eyJjdXJzb3IiOiJhYmMifQ=="