Playground
USE IT FROM PLAYGROUND
Depending on the datas you are looking for, you can directly query any data needed on:
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
    }
  }
}
Same example in the playground:

You can access the hole schema in the right panel of the playground:

Or directly in our repository.