Solaris AISolaris AI FlowDocs
Node ReferenceDeFi

Meteora

DLMM and DAMM pool data, OHLCV, and volume history via Meteora.

View as Markdown

Meteora provides dynamic liquidity market making (DLMM) and dynamic AMM (DAMM) pools on Solana. The Meteora node covers pool discovery, analytics, and historical data.

Prerequisites

No credential required. All operations use Meteora's public API.

Operations

OperationDescriptionKey inputs
getDLMMPoolsList DLMM pools with search and sortsearchTerm, sortBy, limit
getDLMMPoolDetailsGet details for a specific DLMM poolpoolAddress
getDLMMPoolGroupsList DLMM pool groupssearchTerm, sortBy, limit
getDLMMOHLCVGet OHLCV candlestick data for a poolpoolAddress, timeframe
getDLMMVolumeHistoryGet volume history for a poolpoolAddress
getDLMMStatsGet DLMM protocol statistics(none)
getDAMMPoolsList DAMM poolssearchTerm, sortBy, limit
getDAMMPoolDetailsGet details for a specific DAMM poolpoolAddress
getDAMMStatsGet DAMM protocol statistics(none)

Configuration

FieldTypeRequiredDescription
poolAddressstringFor detail/OHLCV opsPool address
searchTermstringNoSearch keyword (max 200 chars)
sortBystringNoSort field (e.g., liquidity, volume, feeApr)
sortTypestringNoasc or desc (default: desc)
timeframestringNoOHLCV timeframe: 1m, 5m, 15m, 1h, 4h, 1d
limitnumberNoResults limit (default: 10, max: 50)

Output

All operations return the standard envelope:

{
  "success": true,
  "operation": "getDLMMPools",
  "data": { /* raw Meteora response */ }
}

Reference fields downstream with the response name (default meteoraResponse). For pool detail operations the payload is the pool object under .data; for list operations the pools are typically under .data or a nested array such as .data.pairs depending on the Meteora endpoint.

Common use cases

  • Track DLMM pool performance and fee APRs
  • Monitor volume trends across Meteora pools
  • Analyze candlestick data for LP timing decisions

Next steps

  • Orca - concentrated liquidity pools
  • Kamino - lending and vaults

On this page