Skip to main content
GET
/
wallets
/
{wallet}
/
limit_orders
/
closed
/
pools
/
{pool_address}
Get Closed Limit Orders For Pool
curl --request GET \
  --url https://dlmm.datapi.meteora.ag/wallets/{wallet}/limit_orders/closed/pools/{pool_address}
{
  "current_page": 1,
  "data": [
    {
      "filled_input_amount": "<string>",
      "filled_pct": "<string>",
      "input_token": "<string>",
      "input_token_mint": "<string>",
      "is_ask_side": true,
      "last_closed_at": 1,
      "limit_order_address": "<string>",
      "lower_pool_price": 123,
      "opened_at": 1,
      "opened_at_signature": "<string>",
      "opened_at_slot": 1,
      "output_amount_expected": "<string>",
      "output_token": "<string>",
      "output_token_mint": "<string>",
      "received_output_amount": "<string>",
      "terminal_signature": "<string>",
      "terminal_slot": 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>",
      "total_deposit_sol": "<string>",
      "total_deposit_usd": "<string>",
      "total_deposit_x": "<string>",
      "total_deposit_y": "<string>",
      "total_withdrawal_sol": "<string>",
      "total_withdrawal_usd": "<string>",
      "total_withdrawal_x": "<string>",
      "total_withdrawal_x_sol": "<string>",
      "total_withdrawal_x_usd": "<string>",
      "total_withdrawal_y": "<string>",
      "total_withdrawal_y_sol": "<string>",
      "total_withdrawal_y_usd": "<string>",
      "upper_pool_price": 123,
      "user_address": "<string>"
    }
  ],
  "page_size": 1,
  "pages": 1,
  "pool": {
    "base_fee": "<string>",
    "bin_step": 1,
    "collect_fee_mode": 1,
    "pair_name": "<string>",
    "pool_address": "<string>",
    "token_x": "<string>",
    "token_x_icon": "<string>",
    "token_x_mint": "<string>",
    "token_y": "<string>",
    "token_y_icon": "<string>",
    "token_y_mint": "<string>"
  },
  "total": 1
}

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

Query Parameters

page
integer<int64> | null

Page number, 1-indexed. Default: 1

Required range: x >= 1
page_size
integer<int64> | null
default:20

Number of results per page. Default: 20, max: 1000

Required range: 1 <= x <= 1000

Response

Top-level response for GET /wallets/{wallet}/limit_orders/closed/pools/{pool_address}. Pool metadata is emitted once at the top; per-order rows in data only carry order-specific fields.

current_page
integer<int64>
required
Required range: x >= 0
data
object[]
required
page_size
integer<int64>
required
Required range: x >= 0
pages
integer<int64>
required
Required range: x >= 0
pool
object
required

Pool-level metadata shared across all limit-order responses for a given pool. Same shape on both the open- and closed-order endpoints so clients can render the pool header from a single struct.

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