Skip to main content
GET
/
wallets
/
{wallet}
/
limit_orders
/
summary
Get Limit Order Summary
curl --request GET \
  --url https://dlmm.datapi.meteora.ag/wallets/{wallet}/limit_orders/summary
{
  "closed_orders": 1,
  "open_orders": 1,
  "total_bonus_sol": "<string>",
  "total_bonus_usd": "<string>",
  "total_deposit_sol": "<string>",
  "total_deposit_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

Response

Summary totals for a user's limit orders across every pool. _sol variants follow two different time bases:

  • total_deposit_sol — SOL value at placement time (SOL price frozen when the PlaceLimitOrderEvt was indexed).
  • total_bonus_sol — SOL value at current spot (current SOL price applied to the running bonus accrual).

"Open" means placed with no row in close_limit_orders. "Closed" means an close_limit_orders row exists. Cancel events are not terminal — a cancelled-but-not-closed order is still open.

closed_orders
integer<int64>
required

Number of limit orders that have been closed on-chain.

Required range: x >= 0
open_orders
integer<int64>
required

Number of limit orders that are still open (no close event).

Required range: x >= 0
total_bonus_sol
string
required

Total SOL value of bonus accrued across open orders (current spot SOL price).

total_bonus_usd
string
required

Total USD value of bonus (pro-rata fee share) accrued across open orders.

total_deposit_sol
string
required

Total SOL value of currently-open order deposits (placement-time SOL price).

total_deposit_usd
string
required

Total USD value of currently-open order deposits.