### Bubblemap Query Parameters Source: https://docs.insightx.network/docs/query-parameters This section details the query parameters that can be appended to a Bubblemap URL to customize its appearance and behavior. ```APIDOC ## Bubblemap Query Parameters ### Description These query parameters allow for further enhancement and customization of Bubblemaps to suit specific needs. ### Method GET ### Endpoint `/websites/insightx_network` (Example path, actual endpoint may vary) ### Parameters #### Query Parameters - **zoom** (number) - Optional - Range: 0.25–3. Defaults by viewport, with common values between 0.45 and 0.8. - **theme** (string) - Optional - Applies a color theme to the Bubblemap UI. - **preview** (boolean) - Optional - Loads a minimal, fast version used for hover previews. Defaults to `false`. - **locale** (string) - Optional - Sets the display language of the Bubblemap UI. Defaults to `en`. - **hide** (string) - Optional - Ability to force hide elements on the UI. Example: `hide=token`. - **v** (number) - Optional - Version selector. `1` for V1 (default), `2` for V2. - **embed_id** (string) - Required - Required to authenticate embeds outside localhost. Issued to partners only. ### Request Example ``` /websites/insightx_network?zoom=0.7&theme=dark&locale=es&v=2&embed_id=YOUR_EMBED_ID ``` ### Response (Note: Response details are not provided in the input text. This section would typically describe the success response of the API call that renders the Bubblemap.) #### Success Response (200) (Details not available in the provided text.) #### Response Example (Details not available in the provided text.) ``` -------------------------------- ### Embed InsightX Bubblemaps with iframe and embed_id Source: https://docs.insightx.network/docs/web-integration For production environments or local development requiring authentication, include the 'embed_id' query parameter in the iframe's 'src' URL. Replace 'YOUR_EMBED_ID_HERE' with your provided embed ID. Ensure 'allow="clipboard-write"' is present. ```html ``` -------------------------------- ### Apply Custom Theme to Bubblemap Source: https://docs.insightx.network/docs/apply-theme To apply a custom theme to your embedded Bubblemap, append the `?theme=THEME_NAME` query parameter to the base integration URL. This allows for seamless UI integration with your product. ```APIDOC ## GET /websites/insightx_network/bubblemaps ### Description Applies a custom theme to the embedded Bubblemap by appending a query parameter to the base URL. ### Method GET ### Endpoint `https://app.insightx.network/bubblemaps/1/{contract_address}` ### Query Parameters - **theme** (string) - Optional - The name of the custom theme to apply. Example: `THEME_NAME` ### Request Example ``` https://app.insightx.network/bubblemaps/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf?theme=THEME_NAME ``` ### Response #### Success Response (200) This endpoint does not return a JSON response body. The theme is applied directly to the embedded Bubblemap visualization. #### Response Example N/A ``` -------------------------------- ### Mobile App Integration (Android/iOS) Source: https://docs.insightx.network/docs/mobile-app-integration This endpoint is optimized for mobile applications on both Android and iOS platforms. It allows you to embed InsightX Bubblemaps within your mobile app's webview component. Ensure you use this endpoint instead of the standard `/bubblemaps/` route for mobile integrations. ```APIDOC ## GET /webview/[CHAIN_ID]/[TOKEN_ADDRESS] ### Description This endpoint provides a mobile-optimized view of InsightX Bubblemaps, suitable for integration into Android and iOS applications via a webview. ### Method GET ### Endpoint `https://app.insightx.network/webview/[CHAIN_ID]/[TOKEN_ADDRESS]` ### Parameters #### Path Parameters - **CHAIN_ID** (string) - Required - The unique identifier for the blockchain network. - **TOKEN_ADDRESS** (string) - Required - The address of the token to display on the map. #### Query Parameters - **client** (string) - Required - Your unique client ID, used for identifying and supporting your integration. ### Request Example `https://app.insightx.network/webview/1/0x1f3f4d84f745697262c39231f377763f92f2c8a8?client=your_client_id_here` ### Response #### Success Response (200) This endpoint returns an HTML page that renders the InsightX Bubblemaps interface within a webview. #### Response Example (HTML content rendering the Bubblemaps interface) ``` -------------------------------- ### Embed InsightX Bubblemaps with iframe Source: https://docs.insightx.network/docs/web-integration Integrate InsightX Bubblemaps into your web application using an iframe. The 'src' attribute should point to the Bubblemaps URL, including the CHAIN_ID and TOKEN_ADDRESS. The 'allow="clipboard-write"' attribute is crucial for full functionality. Width and height can be adjusted. ```html ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.