- Ownership
- Get token owners
Ownership
Get token owners
Get the owner(s) of an NFT (ERC721 or ERC1155) as specified by a combination of its contractAddress and tokenId.
GET
/v1/owners
chainId*
contractAddresses
tokenId
fetchNftMetadata
curl --request GET \
--url https://api.bitski.com/v1/owners \
--header 'Content-Type: application/json' \
--data '{
"balances": array of object,
"error":
}'
Query Parameters
chainIdRequiredDefault: 1
integer
Set the network to get data from. For EVM chains, see a list of available chains here.
contractAddresses
array of string
The contract address to get NFT owners of.
tokenId
string
The NFT token id, in decimal or hex format, to filter by.
fetchNftMetadata
boolean
If true, will fetch metadata for NFTs. Only used if nfts=true
is passed in
as well.
Response
balancesRequired
array of object
errorRequired
object
curl --request GET \
--url https://api.bitski.com/v1/owners \
--header 'Content-Type: application/json' \
--data '{
"balances": array of object,
"error":
}'