Skip to content

Put your storefront on your own site.

Two snippets. The badge is a single link and needs nothing else. The widget renders your storefront inline and contains that same link, so it still works when a script does not.

Leave it empty for a plain Powered by Postey badge that links to the homepage.

The badge

One link, no JavaScript. Paste it into a footer, a sidebar, a Notion page or an email signature. It renders the same everywhere and it does not care what else is on the page.

badge.html
<a href="https://postey.ai" target="_blank" rel="noopener" aria-label="Powered by Postey" style="display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border:1px solid #e3e3e0;border-radius:999px;font:500 13px/1 system-ui,-apple-system,Segoe UI,sans-serif;color:#1a1a18;background:#fff;text-decoration:none"><svg width="14" height="14" viewBox="-32 -10 320 320" fill="none" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"><path d="M53.9995 299.5C47.4995 298.5 1.00049 248.497 1.00049 248.497C1.00049 248.497 0.499512 158 0.5 149.5C0.500489 141 4.50049 140.5 8 139.5C11.4995 138.5 145.5 142 164 138.5C182.5 135 190.487 122.348 190.5 102.5C188.722 84.887 175.501 70.9936 161.001 69.4968C146.5 68 54.0005 69.4968 54.0005 69.4968C54.0005 69.4968 9.80827 26.4991 3.5 18.5C-2.80827 10.5009 4.49951 0.502921 10.4995 0.500213C16.4995 0.497506 148.501 0.498071 166.501 1.99684C184.501 3.49561 206.688 13.6985 224.501 31.9968C259.001 69.4968 266 129 228 174.5C216.83 189.261 190.192 203.908 161.001 207.997H65.0005C65.0005 207.997 66.0015 286 65.0005 292.5C63.9995 299 60.4995 300.5 53.9995 299.5Z" fill="currentColor"/></svg><span>Powered by Postey</span></a>

The widget

Shows your name, tagline and first few items, and links through to your storefront. Note that the badge is inside it: that link is in your page before the script runs, and it stays there if the script never does.

widget.html
<div data-postey-embed><a href="https://postey.ai" target="_blank" rel="noopener" aria-label="Powered by Postey" style="display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border:1px solid #e3e3e0;border-radius:999px;font:500 13px/1 system-ui,-apple-system,Segoe UI,sans-serif;color:#1a1a18;background:#fff;text-decoration:none"><svg width="14" height="14" viewBox="-32 -10 320 320" fill="none" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"><path d="M53.9995 299.5C47.4995 298.5 1.00049 248.497 1.00049 248.497C1.00049 248.497 0.499512 158 0.5 149.5C0.500489 141 4.50049 140.5 8 139.5C11.4995 138.5 145.5 142 164 138.5C182.5 135 190.487 122.348 190.5 102.5C188.722 84.887 175.501 70.9936 161.001 69.4968C146.5 68 54.0005 69.4968 54.0005 69.4968C54.0005 69.4968 9.80827 26.4991 3.5 18.5C-2.80827 10.5009 4.49951 0.502921 10.4995 0.500213C16.4995 0.497506 148.501 0.498071 166.501 1.99684C184.501 3.49561 206.688 13.6985 224.501 31.9968C259.001 69.4968 266 129 228 174.5C216.83 189.261 190.192 203.908 161.001 207.997H65.0005C65.0005 207.997 66.0015 286 65.0005 292.5C63.9995 299 60.4995 300.5 53.9995 299.5Z" fill="currentColor"/></svg><span>Powered by Postey</span></a></div>
<script src="https://postey.ai/embed/postey.js" async></script>
  • It reads only your public storefront — the same thing anyone sees at your storefront address, logged out.
  • It sets no cookie and stores nothing in your visitors' browsers, on your domain or on ours. It sends us no analytics.
  • It renders inside a shadow root on its own element. It cannot restyle your page and your stylesheet cannot break it.
  • If your site sends a Content-Security-Policy, both script-src and connect-src have to allow https://postey.ai, or the browser blocks the script and the widget never renders. That is exactly why the badge exists on its own: a CSP cannot stop a plain link.