Getting Started
Querying the Indexer
To query against the Indexer's GraphQL API simply make a POST request the indexer query url.
If you are making an unauthenticated request, make sure to include X-Hasura-Role: anonymous in the header of the request.
Fetching a Zora NFT
To fetch the rich information from Zora NFTs, use the Media table. The example query fetches the last 100 NFTs minted on the Zora Media contract.
Fetching any NFT
You can directly query for any NFT by querying the Token table. The example query fetches the first 100 tokenIds for the Blitmap collection. You can check to see which NFT contracts are supported by querying the TokenContract table.
Fetching a Zora Auction
You can query for a Zora Auction by using the Auction table. The example query fetches the auctions that have had their reserve price met, but have not been finalized (listed in order of auctionId).
Last updated