Skip to main content
GET
/
wallets
/
{wallet}
/
limit_orders
/
pools
/
{pool_address}
/
bonus_claimed
Get Bonus Claimed For Pool
curl --request GET \
  --url https://dlmm.datapi.meteora.ag/wallets/{wallet}/limit_orders/pools/{pool_address}/bonus_claimed
{
  "cancel_event_count": 1,
  "total_bonus_sol": "<string>",
  "total_bonus_usd": "<string>",
  "total_bonus_x": "<string>",
  "total_bonus_x_sol": "<string>",
  "total_bonus_x_usd": "<string>",
  "total_bonus_y": "<string>",
  "total_bonus_y_sol": "<string>",
  "total_bonus_y_usd": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.meteora.ag/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

wallet
string
required

Base58-encoded wallet address

pool_address
string
required

Base58-encoded LB pair (pool) address

Response

Realized bonus a wallet has claimed on one pool. Aggregates every cancel event the wallet has on the pool, including cancels on orders that have not yet been closed. USD/SOL values are priced from each cancel row's own amount_*_usd / amount_*_sol ratios (cancel-time prices), not current spot.

cancel_event_count
integer<int64>
required

Number of distinct cancel events contributing to these totals.

Required range: x >= 0
total_bonus_sol
string
required

total_bonus_x_sol + total_bonus_y_sol.

total_bonus_usd
string
required

total_bonus_x_usd + total_bonus_y_usd.

total_bonus_x
string
required

Bonus token X claimed, in token X display units (decimals applied).

total_bonus_x_sol
string
required

Bonus token X claimed, in SOL (cancel-time SOL price).

total_bonus_x_usd
string
required

Bonus token X claimed, in USD (cancel-time price).

total_bonus_y
string
required

Bonus token Y claimed, in token Y display units (decimals applied).

total_bonus_y_sol
string
required

Bonus token Y claimed, in SOL (cancel-time SOL price).

total_bonus_y_usd
string
required

Bonus token Y claimed, in USD (cancel-time price).