Test the embeddable buy button on a partner site
The widget opens with a product catalog. Users can browse products, view details, add to cart, and proceed to checkout.
The simplest embed - just add the data attribute and the script. Shows all products.
<div data-kushii-embed></div>
<script src="https://d1yfgmwybrvimm.cloudfront.net/kushii-embed.js"></script>
Pre-filtered to a specific brand - skips brand selection and shows products directly.
<div data-kushii-embed data-brand="ROSIN HEADS"></div>
Show a specific product directly using the product hash - skips brand and catalog views.
<div data-kushii-embed data-product-key="750314d3" data-product-name="Hash Rosin Wafer Stix"></div>
Customize the button text to match your site's messaging.
<div data-kushii-embed data-button-text="Browse Cannabis"></div>
Inline catalog filtered to a brand — uses location to find nearby stores. Add data-inline to force inline mode.
<div data-kushii-embed data-brand="TRIBAL" data-inline></div>
Open the widget programmatically using JavaScript - useful for custom button designs.
KushiiEmbed.open();
Copy this code to embed the widget on any website:
<!-- Kushii Buy Button -->
<div data-kushii-embed></div>
<!-- Kushii Store Embed (inline catalog) -->
<div data-kushii-embed data-store-key="YOUR_STORE_KEY" data-store-name="Your Store Name"></div>
<script src="https://d1yfgmwybrvimm.cloudfront.net/kushii-embed.js"></script>