Wallet Actions
Get incentive rewards
Retrieve all incentive rewards for a wallet on a given chain, with claimed and claimable amounts per token.
get/v1/wallets/{wallet_id}/earn/ethereum/incentive/claim
Path parameters
wallet_idstring required
ID of the wallet.
Query parameters
chainstring required
Chain name to fetch rewards for (e.g. "base", "ethereum").
Headers
privy-app-idstring required
ID of your Privy app.
Response
Incentive rewards retrieved successfully.
Example response
{
"rewards": [
{
"amount_claimed": "1000000000000000000",
"amount_unclaimed": "500000000000000000",
"token_address": "0x0000000000000000000000000000000000000000",
"token_decimals": 18,
"token_symbol": "MORPHO"
}
]
}