Possession

Possession API is used for querying Token ownership and NFT ownership and ENS ownership, Developers can learn the asset information owned by users through the query address.

Token

It supports querying how many and which Tokens an address owns, and on the contrary, can also query an Token that has been held by which addresses.

  • Query the token owned by the address

{
  addrs(where:{address:"0x…"}){
    address
    holdTokens{
      name
      symbol
    }
  }
}
  • Which addresses are held by the Token

{
  tokens{
    name
    addrsHold{
      address
    }
  }
}

NFT

It supports querying how many and which NFTs an address owns, and on the contrary, can also query an NFT has been held by which addresses.

  • Address held by NFT

  • Which addresses are held by NFT

ENS

You can query the number and specific information of the ENS owned by an address. On the contrary, you can also query the address where an ENS is held.

  • Address owned by ENS

  • Query address according to ENS

Polygon

Access the information and number of NFT and token held by address

Access the holder's address according to NFT

Access the holder's address according to token

Last updated