Web

For web and desktop applications

You can integrate InsightX Atlas into your application using an <iframe> embed. Once your domain is whitelisted, the integration works out of the box.

URL Structure


To display an Atlas view, use the following URL format:

https://app.insightx.network/atlas/[CHAIN_ID]/[TOKEN_ADDRESS]

Check our Supported Chains for a list of Network Names and their Chain IDs

Example for an Ethereum address

https://app.insightx.network/atlas/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf

Example<iframe> embed


<iframe
        src="https://app.insightx.network/atlas/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf"
        allow="clipboard-write"
        width="100%"
        height="100%"
></iframe>

You can adjust width and height to match your layout.
Note: Keep allow="clipboard-write" to ensure full functionality.


*Note for Production: an embed_id is required to authenticate your embed. Partners receive this ID as part of their integration setup. Without this, you will not be able to go live using the InsightX Atlas embed integration.

If you’ve been issued an embed_id, you can also use it in your local development environment.

Example<iframe> embed with embed_id


<iframe
        src="https://app.insightx.network/atlas/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf?embed_id=YOUR_EMBED_ID_HERE"
        allow="clipboard-write"
        width="100%"
        height="100%"
></iframe>