---
title: "Get Limit Order Summary"
method: GET
path: "/wallets/{wallet}/limit_orders/summary"
tags: ["Limit Orders"]
---

# Get Limit Order Summary

`GET /wallets/{wallet}/limit_orders/summary`

Returns aggregate totals for a user's limit orders across all pools:
open/closed order counts, total deposit value, and total bonus fees earned.
"Open" means placed with no `close_limit_orders` row. "Closed" means the
order has a `close_limit_orders` row (`CloseLimitOrderIfEmpty` was invoked).

## Path parameters

- `wallet` string, required

## Response `200`

- LimitOrderSummaryResponse — 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, required — Number of limit orders that have been closed on-chain.
  - `open_orders` integer, required — Number of limit orders that are still open (no close event).
  - `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.

## Other responses

- `400`

---

[API](https://skmtc.net/meteora/apis/dynamic-amm-keeper.md) · [All operations](https://skmtc.net/meteora/apis/dynamic-amm-keeper/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/meteora/dynamic-amm-keeper/revisions/453231c15a14/schema)
