Solaris AISolaris AI FlowDocs
Node ReferenceDeFi

Orca

Pool data, token info, and protocol stats via Orca.

View as Markdown

Orca is a concentrated liquidity DEX on Solana. The Orca node provides pool discovery, token lookups, and protocol statistics.

Prerequisites

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

Operations

OperationDescriptionKey inputs
getPoolsList pools with filtering and sortingsortBy, tokenFilter, minTvl, limit
getPoolDetailsGet details for a specific poolpoolAddress
searchPoolsSearch pools by keywordsearchQuery
getTokenGet token details by minttokenMint
searchTokensSearch tokens by keywordsearchQuery
getTokensList tokens with paginationlimit
getProtocolStatsGet Orca protocol-wide statistics(none)

Configuration

FieldTypeRequiredDescription
poolAddressstringFor getPoolDetailsPool address
tokenMintstringFor getTokenToken mint address
searchQuerystringFor search opsSearch keyword (max 200 chars)
tokenFilterstringNoFilter pools by token
sortBystringNoSort: tvl, volume, feeApr (default: tvl)
sortTypestringNoasc or desc (default: desc)
statsPeriodstringNoStats window: 24h, 7d, 30d (default: 24h)
minTvlnumberNoMinimum TVL filter
limitnumberNoResults limit (default: 10, max: 50)

Output

All operations return the standard envelope:

{
  "success": true,
  "operation": "getPools",
  "data": { /* raw Orca response */ }
}

Reference fields downstream with the response name (default orcaResponse), for example {orcaResponse.data[0].address} for a pool list or {orcaResponse.data.liquidity} for getPoolDetails.

Common use cases

  • Monitor concentrated liquidity pool performance
  • Discover high-yield pools for LP strategies
  • Track protocol-wide volume and TVL trends

Next steps

On this page