Skip to main content
This is the full list of Moralis REST endpoints covered by Data Feeds, ordered by how widely each is used (most-used first). Find the endpoint you call today; the Recipes column tells you exactly what to turn on. Each recipe page has a “Migrating from the REST API” section with the field-by-field mapping for the endpoints it replaces.
Data Feeds are not a 1:1 endpoint swap. Many endpoints return pre-joined objects that map to a combination of recipes: the first recipe listed is the core dataset, the rest complete the response. Plan for a join (usually one SQL view) rather than a drop-in replacement.
New to Data Feeds first? Read the migration overview for how the API and Data Feeds differ, then come back here to pick your endpoint.

Endpoints by usage

#Legacy endpointRecipes you needHeadline fidelity
1GET /wallets/:address/tokensToken Balances by Wallet + Native Balances + Token Prices + Token Metadatabalances exact, prices calculated
2GET /erc20/:token_address/ownersToken Holders + Token Metadataexact
3GET /wallets/:address/historyWallet Historyexact, decode-yourself + off-chain labels
4GET /:address/nftNFTs by Wallet + NFT Collection Metadataonchain exact, metadata add-yourself
5GET /:address/erc20Token Balances by Wallet + Token Metadataexact
6GET /erc20/pricesToken Prices + Token Metadatacalculated
7GET /erc20/:tokenAddress/holdersToken Holders + Token Transferscounts exact, tiers your-definition
8GET /:address/erc20/transfersToken Transfers + Token Metadataexact
9POST /nft/getMultipleNFTsNFT Collection Metadata + NFT Owners by Contractonchain exact, metadata add-yourself
10GET /:address/nft/transfersNFT Transfersexact
11GET /:address/nft/collectionsNFTs by Wallet + NFT Collection Metadataexact
12GET /erc20/:address/priceToken Pricescalculated
13GET /transaction/:hash/verboseContract Logs + the block arrayraw exact, ABI decode-yourself
14GET /block/:block_number_or_hashContract Logs + the block arrayexact
15GET /:address (native txns)Wallet Historyexact
16GET /wallets/:address/net-worthToken Balances by Wallet + Native Balances + Token Pricescalculated
17GET /wallets/:address/approvalsToken Approvals + Token Metadata + Token Pricesexact, USD-at-risk calculated
18GET /wallets/:address/chainsWallet Historyexact
19GET /erc20/metadataToken Metadata + Token Pricesexact, market data calculated
20GET /pairs/:address/ohlcvPair OHLCVcalculated from real trades
21GET /erc20/:token_address/pairsSwaps by Pair + Pair Reserves + Token Metadatapools exact, market data calculated
22GET /erc20/:address/transfersToken Transfersexact
23GET /erc20/:tokenAddress/holders/historicalHistorical Balances + Token Transfersexact + calculated
24GET /nft/:address/metadataNFT Collection Metadataexact, off-chain extras
25GET /tokens/:tokenAddress/analyticsSwaps by Token + Token Prices + Pair Reservescalculated
26GET /:address/balanceNative Balancesexact
27GET /nft/:addressNFT Owners by Contract + NFT Collection Metadataonchain exact, metadata add-yourself
28GET /wallets/:address/statsWallet History + NFTs by Walletexact
29GET /wallets/:address/swapsSwaps by Walletonchain exact, USD calculated
30GET /nft/:address/ownersNFT Owners by Contractonchain exact

Solana endpoints

The sunsetting Solana token-holder endpoints map onto the same holder recipes, pointed at Solana (the feed’s SPL tokenTransfers carry absolute post-balances, so the recipes run unchanged):
Legacy endpointRecipes you needHeadline fidelity
GET /token/:network/:address/top-holdersToken Holdersexact, USD calculated
GET /token/:network/holders/:addressToken Holders + Token TransferstotalHolders exact, tiers your-definition
GET /token/:network/holders/:address/historicalHistorical Balancesper-bucket totals exact, change calculated
The sunsetting launchpad / discovery endpoints (pump.fun, Raydium LaunchLab) are all served by the one Token Bonding Status recipe over the launchpadEvents feed:
Legacy endpointRecipes you needHeadline fidelity
GET /token/:network/exchange/:exchange/newToken Bonding Statusexact, price calculated
GET /token/:network/exchange/:exchange/bondingToken Bonding Statusprogress exact, price calculated
GET /token/:network/exchange/:exchange/graduatedToken Bonding Status + Token Pricesexact (+ DEX pool)
GET /token/:network/:address/bonding-statusToken Bonding Statusexact

Not covered yet

  • Other Solana endpoints (prices, swaps, portfolio, metadata) are not yet covered.
  • Search and discovery endpoints (/tokens/search, /discovery/*) are a search product, not an indexed feed.
  • RPC node methods (eth_*) belong to the node product, not Data Feeds.