Depending on the data you are looking for, you can directly query any data needed on:
The Alphanet indexerarrow-up-right
The Mainnet indexerarrow-up-right
You just need to create the graphql request, for example, a simple request to get the 10 last listed nft:
{ nftEntities(first: 10, offset: 0, orderBy: TIMESTAMP_LIST_DESC) { totalCount nodes { nftId owner creator collectionId offchainData } } }
The same example in the playground:
You can access the whole schema in the right panel of the playground:
Last updated 2 years ago