Get Owners By Token Id

Get owners of a specific NFT given the contract address and token ID.

Get Owners By Token Id

Get owners of a specific NFT given the contract address and token ID.

GET/api/owners/by_token
Query parameters
Response

Successful Response

Body
statusall of

The syncing status of the address [SYNCING/SYNCED]

totalTotal

The total number of matches for this query

pagePage

The current page of the result

page_sizePage Size

The number of results per page

cursorCursor

The cursor to get to the next page

result*Result
Request
const response = await fetch('/api/owners/by_token', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "status": {},
  "cursor": "text",
  "result": [
    {
      "token_address": "text",
      "name": "text",
      "symbol": "text",
      "contract_type": "text",
      "token_id": "text",
      "amount": "text",
      "token_hash": "text",
      "owner_of": "text",
      "block_number_minted": "text",
      "block_number": "text",
      "token_uri": "text",
      "last_token_uri_sync": "text",
      "last_metadata_sync": "text",
      "minter_address": "text",
      "metadata": {
        "name": "text",
        "description": "text",
        "image": "text",
        "external_url": "text",
        "animation_url": "text",
        "attributes": [
          {
            "trait_type": "text",
            "display_type": "text",
            "value": "text"
          }
        ]
      }
    }
  ]
}

Last updated