> ## Documentation Index
> Fetch the complete documentation index at: https://docs.privy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get incentive rewards

> Retrieve all incentive rewards for a wallet on a given chain, with claimed and claimable amounts per token.



## OpenAPI

````yaml get /v1/wallets/{wallet_id}/earn/ethereum/incentive/claim
openapi: 3.1.0
info:
  version: 0.0.1
  title: Privy API
  description: >-
    REST API for Privy's wallet infrastructure — provision and manage wallets
    across EVM, Solana, and Bitcoin, authenticate users, sign transactions, and
    configure programmable policies and authorization intents.
  contact:
    name: Privy
    url: https://www.privy.io/
    email: support@privy.io
servers:
  - url: https://api.privy.io
security: []
tags:
  - name: Accounts
    description: Operations related to asset accounts
  - name: Aggregations
    description: Operations related to aggregations for tracking and measuring metrics
  - name: Apps
    description: Operations related to app settings and allowlist management
  - name: Client Auth
    description: OAuth token exchange and device authorization operations
  - name: Condition Sets
    description: Operations related to condition sets
  - name: Embedded wallets
    description: Operations related to embedded wallet creation and authentication
  - name: Fiat
    description: Operations related to fiat onramping and offramping
  - name: Intents
    description: Operations related to authorization intents for wallet actions
  - name: Key quorums
    description: Operations related to key quorums
  - name: Kraken Embed
    description: >-
      Operations for Kraken Embed integration, including quotes, trades, user
      management, and portfolio operations
  - name: OAuth
    description: >-
      OAuth 2.0 endpoints including Device Authorization Grant (RFC 8628) for
      CLI and limited-input device login flows
  - name: Organizations
    description: Operations related to organization secret management
  - name: Policies
    description: Operations related to policies
  - name: Shared
    description: Common schemas shared across resources
  - name: Swaps
    description: Operations for swapping tokens within wallets
  - name: Transactions
    description: Operations related to transactions
  - name: User signers
    description: Operations related to user signers
  - name: Users
    description: Operations related to users
  - name: Wallet Actions
    description: Operations related to wallet actions
  - name: Wallets
    description: Operations related to wallets
  - name: Webhooks
    description: >-
      Webhook events that Privy sends to your configured endpoint when specific
      actions occur in your app
  - name: Yield
    description: >-
      Operations for depositing and withdrawing funds from ERC-4626 yield vaults
      (Morpho, Aave)
paths:
  /v1/wallets/{wallet_id}/earn/ethereum/incentive/claim:
    get:
      tags:
        - Wallet Actions
      summary: Get incentive rewards
      description: >-
        Retrieve all incentive rewards for a wallet on a given chain, with
        claimed and claimable amounts per token.
      operationId: getEthereumEarnIncentiveRewards
      parameters:
        - schema:
            type: string
            description: ID of the wallet.
          required: true
          name: wallet_id
          in: path
        - schema:
            type: string
            description: Chain name to fetch rewards for (e.g. "base", "ethereum").
          required: true
          name: chain
          in: query
        - schema:
            type: string
            description: ID of your Privy app.
          required: true
          name: privy-app-id
          in: header
      responses:
        '200':
          description: Incentive rewards retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarnIncentiveRewardsResponse'
      security:
        - appSecretAuth: []
components:
  schemas:
    EarnIncentiveRewardsResponse:
      type: object
      properties:
        rewards:
          type: array
          items:
            $ref: '#/components/schemas/EarnIncentiveRewardEntry'
          description: Reward tokens with their claimed and unclaimed amounts.
      required:
        - rewards
      description: >-
        All incentive rewards for a wallet, with claimed and unclaimed amounts
        per token.
      title: EarnIncentiveRewardsResponse
      example:
        rewards:
          - token_address: '0x0000000000000000000000000000000000000000'
            token_symbol: MORPHO
            token_decimals: 18
            amount_claimed: '1000000000000000000'
            amount_unclaimed: '500000000000000000'
      x-stainless-model: wallets.actions.earn_incentive_rewards_response
    EarnIncentiveRewardEntry:
      type: object
      properties:
        token_address:
          type: string
          description: Address of the reward token.
        token_symbol:
          type: string
          description: Symbol of the reward token (e.g. "MORPHO").
        token_decimals:
          type: integer
          description: Number of decimals for the reward token.
        amount_claimed:
          type: string
          minLength: 1
          maxLength: 78
          pattern: ^\d+$
          description: Total amount already claimed, in smallest unit.
        amount_unclaimed:
          type: string
          minLength: 1
          maxLength: 78
          pattern: ^\d+$
          description: >-
            Amount available to claim on-chain but not yet claimed, in smallest
            unit.
      required:
        - token_address
        - token_symbol
        - amount_claimed
        - amount_unclaimed
      description: A reward token with claimed and unclaimed amounts.
      title: EarnIncentiveRewardEntry
      example:
        token_address: '0x0000000000000000000000000000000000000000'
        token_symbol: MORPHO
        token_decimals: 18
        amount_claimed: '1000000000000000000'
        amount_unclaimed: '500000000000000000'
      x-stainless-model: wallets.actions.earn_incentive_reward_entry
  securitySchemes:
    appSecretAuth:
      type: http
      scheme: basic
      description: >-
        Basic Auth header with your app ID as the username and your app secret
        as the password.

````