Skip to Content
ToolsData Indexers

Data Indexers

ServiceBest for
Alchemy NFT/Token/Transfers APIsGeneral-purpose queries, NFT metadata, token balances
Alchemy SubgraphsCustom GraphQL queries on indexed contract events
Alchemy WebhooksReal-time notifications (transfers, mints, contract events)
GoldskyStreaming onchain data to your database (Postgres, Kafka)
ReservoirNFT marketplace data (listings, sales, collection stats)
SimpleHashCross-chain NFT and token metadata aggregation

Fetch NFTs owned by an address using the Alchemy NFT API:

const res = await fetch( `https://shape-mainnet.g.alchemy.com/nft/v3/${ALCHEMY_KEY}/getNFTsForOwner?owner=${address}` ); const { ownedNfts } = await res.json();
Last updated on