# Token information in the IPFS appears with a delay?

**URL:** https://discuss.ipfs.tech/t/token-information-in-the-ipfs-appears-with-a-delay/18685
**Category:** Help
**Tags:** use-cases-and-apps
**Created:** [November 14, 2024, 10:36am UTC](https://discuss.ipfs.tech/t/token-information-in-the-ipfs-appears-with-a-delay/18685 "2024-11-14T10:36:43Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![v9lu](https://avatars.discourse-cdn.com/v4/letter/v/c4cdca/32.png) [@v9lu](https://discuss.ipfs.tech/u/v9lu)
#### Post date: [November 14, 2024, 10:36am UTC](https://discuss.ipfs.tech/t/token-information-in-the-ipfs-appears-with-a-delay/18685/1 "2024-11-14T10:36:43Z")

</div>

Hello, I have a question: I’m using Helius RPC and they send me data on my webhook, so after token\_mint (token creation) I immediately receive token metadata (with link on IPFS), and after that I’m trying to get token info (like description, social networks, etc) using .get request on IPFS.

The main problem is that IPFS returns None (but after some time it returns all token infos). So, how quickly does information appear in the IPFS? And how can I speed-up retrieve of this infos?

Use-Case code:

```python
# After webhook data received
response = requests.get(url=token_metadata["data"]["uri"]) # IPFS
data = response.json()
>>> None

```

---

<div class="post-metadata">

### Author: ![SgtPooki](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/sgtpooki/32/6643_2.png) [@SgtPooki](https://discuss.ipfs.tech/u/SgtPooki)
#### Post date: [November 14, 2024, 1:43pm UTC](https://discuss.ipfs.tech/t/token-information-in-the-ipfs-appears-with-a-delay/18685/2 "2024-11-14T13:43:10Z")

</div>

What is the base URL of `url=token_metadata["data"]["URI"]`? Is this pointing to some Helius-owned IPFS gateway or another?
