Kushii Embed Widget Test

Test the embeddable buy button on a partner site

User Flow

Click Button Browse Products View Details Add to Cart Checkout

The widget opens with a product catalog. Users can browse products, view details, add to cart, and proceed to checkout.

1. Basic Embed

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>

2. Branded Embed

Pre-filtered to a specific brand - skips brand selection and shows products directly.

<div data-kushii-embed data-brand="ROSIN HEADS"></div>

3. Single Product Embed (with product key)

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>

4. Custom Button Text

Customize the button text to match your site's messaging.

<div data-kushii-embed data-button-text="Browse Cannabis"></div>

5. Brand Embed (Inline)

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>

6. Programmatic API

Open the widget programmatically using JavaScript - useful for custom button designs.

KushiiEmbed.open();

7. Full Embed Code

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>