GET
/
wallet
/
{wallet_address}
/
{pair_address}
/
earning
get_wallet_earning
curl --request GET \
  --url https://dlmm-api.meteora.ag/wallet/{wallet_address}/{pair_address}/earning
[
  {
    "total_fee_usd_claimed": 123,
    "total_fee_x_claimed": "0",
    "total_fee_y_claimed": "0",
    "total_reward_usd_claimed": 123,
    "total_reward_x_claimed": "0",
    "total_reward_y_claimed": "0"
  }
]

Path Parameters

wallet_address
string
required

Address of the wallet

pair_address
string
required

Address of the pair

Response

200 - application/json
total_fee_usd_claimed
number | null

Total fee amount has been claimed by the wallet in USD

total_fee_x_claimed
string

Total fee x has been claimed by the wallet

Example:

"0"

total_fee_y_claimed
string

Total fee y has been claimed by the wallet

Example:

"0"

total_reward_usd_claimed
number | null

Total farm reward amount has been claimed by the wallet in USD

total_reward_x_claimed
string

Total reward x has been claimed by the wallet

Example:

"0"

total_reward_y_claimed
string

Total reward y has been claimed by the wallet

Example:

"0"