[SOLVED] How long does it take to reflect the latest info on getNFTTokenIdOwners?

I’m using getNFTTokenIdOwners.

But I can see only one owner even though I can see two owners on OpenSea page.
I think it takes a while to get the latest info from getNFTTokenIdOwners

My question is how long does it take?

Or am I seeing a cached response?

What is the example (address, chain, etc.) you are using? It may take a little time before results are synced with the chain.

Hi glad, Thanks for the reply.

contract address = 0x6a86f04e6312c5c5d653c84ee014633dd322f3e8
chain = mumbai
Id = 6137026078302090

getNFTTokenIdOwners Response (I can see only one owner.)

{
  "total": 1,
  "page": 1,
  "page_size": 100,
  "cursor": null,
  "result": [
    {
      "token_address": "0x6a86f04e6312c5c5d653c84ee014633dd322f3e8",
      "token_id": "6137026078302090",
      "amount": "100",
      "owner_of": "0x41dd2e751df10b27356cd1790567ba6c4b5d933b",
      "token_hash": "73687cf53504614dff5f58b9644dea34",
      "block_number_minted": "28051835",
      "block_number": "28051835",
      "contract_type": "ERC1155",
      "name": null,
      "symbol": null,
      "token_uri": "http://api.deblog.club/nft/metadatas/6137026078302090",
      "metadata": "{\"description\":\"「fadaffdafa」の有料記事を閲覧するためのNFTです。\\n\\nhttps://deblog.club/official/articles/sSwJaqIDBX86_j1yR9Q62mrTRigeoQ1fFazUmBQM\",\"external_url\":\"https://deblog.club/official/articles/sSwJaqIDBX86_j1yR9Q62mrTRigeoQ1fFazUmBQM\",\"image\":\"https://static-files.pages.dev/deblog/images/default_nft.png\",\"name\":\"【有料記事】fadaffdafa - Deblog\"}",
      "last_token_uri_sync": "2022-09-11T20:05:00.227Z",
      "last_metadata_sync": "2022-09-11T20:05:05.562Z"
    }
  ]
}

OpenSea page (I can see 2 owners here)

It looks like it has updated now. Testnets like Mumbai can be a bit slower in general.

1 Like

oh ok. Because of Mumbai. Got it.

Thank you!