Skip to main content
Market Data add-on. Real-time and historical Cardano market data aggregated across all 11 Cardano DEXes: token prices, OHLCV candles, liquidity pools, order books, swap activity, NFT collection stats, dApp blueprints, and an LP leaderboard.
Endpoints on this page require the Market Data add-on. Without it they return HTTP 402 with "addon": "marketData".
Base URL: https://nexus.gerowallet.io · Auth: X-Api-Key: nexus_…

Prices

MethodPathDescription
GET/api/market/adaCurrent ADA/USD market info
GET/api/market/pricesAll current token prices
GET/api/market/prices/{assetId}Single token price
GET/api/market/prices/{assetId}/allToken price across all DEXes
GET/api/market/prices/top-volumeHighest 24h volume tokens
GET/api/market/prices/top-tvlHighest TVL tokens
GET/api/market/history/{assetId}Historical price data for a token
GET/api/market/history/{assetId}/atToken price at a specific timestamp
GET/api/market/tokensList tracked asset identifiers
GET/api/market/tokens/{assetId}/metadataToken metadata
GET/api/prices/latestLatest token prices
GET/api/prices/historical/candlesOHLCV candles for tokens
GET/api/prices/ada/candlesADA/fiat historical candles
GET/api/prices/rsiRSI(14) technical indicator

DEX

MethodPathDescription
GET/api/dex/poolsAll liquidity pools
GET/api/dex/pools/{poolId}Specific pool details
GET/api/dex/pools/dex/{dex}Pools filtered by DEX platform
GET/api/dex/pools/pairPools for a token pair
GET/api/dex/pools/token/{policyId}/{assetName}Pools containing a token
GET/api/dex/pools/top-tvlHighest TVL pools
GET/api/dex/orderbook/{poolId}Real limit order book for a pool
GET/api/dex/orderbook/{poolId}/simulatedAMM-simulated order book
GET/api/dex/orders/dex/{dex}Orders filtered by DEX
GET/api/dex/orders/owner/{pkh}Orders by owner pkh
GET/api/dex/orders/token/{policyId}/{assetName}Orders by token
GET/api/dex/orders/{txHash}/{outputIndex}Order details by tx output
GET/api/dex/quote/buyToken amount for an ADA purchase
GET/api/dex/quote/sellADA received for a token sale
GET/api/dex/swaps/recentRecent global swaps
GET/api/dex/swaps/token/{policyId}/{assetName}Token swap history
GET/api/dex/tokens/{policyId}/{assetName}/top-tradersMost active traders for a token

NFT

MethodPathDescription
GET/api/nft/collectionsList tracked NFT collections
GET/api/nft/collection/{policyId}Collection statistics
GET/api/nft/collection/{policyId}/floorCollection floor price
GET/api/nft/collection/{policyId}/salesRecent collection sales
GET/api/nft/asset/{policyId}/{assetName}/priceIndividual NFT last sale price

Blueprints, leaderboard & sync

MethodPathDescription
GET/api/blueprintsList registered DApp blueprints
POST/api/blueprintsRegister a new blueprint
GET/api/blueprints/{id}Retrieve a specific blueprint
DELETE/api/blueprints/{id}Unregister a blueprint
GET/api/blueprints/{id}/eventsQuery persisted blueprint events
GET/api/leaderboardWallets ranked by LP TVL
GET/api/leaderboard/statsAggregate leaderboard statistics
GET/api/sync/statusIndexer synchronization status

Example

curl "https://nexus.gerowallet.io/api/market/prices/top-volume" \
  -H "X-Api-Key: nexus_your_api_key_here"

Stream prices in real time

Pair Market Data with a WebSocket package to receive live price and swap updates instead of polling.
Full request/response schemas for every endpoint are in the API Reference.