Ship every site with a conversation layer.
One script tag adds OgaChat to any website - an assistant that answers every enquiry, captures every lead, and follows up automatically. A month of work in three lines.
<script src="https://ogamy.co/widget.js" data-key="pk_live_yourkey"></script>The data-key is a public identifier (pk_live_…), safe to ship in client-side HTML.
A month of work in three lines.
Instant answers, every persona
A tuned assistant answers every visitor enquiry in seconds - in your client's voice, using their services, hours, and FAQ.
Lead capture, built in
Every enquiry becomes a tracked lead. Names, intent, and contact details captured automatically - nothing slips.
A conversation dashboard
The business owner claims a dashboard showing every conversation and lead, with a weekly digest of what happened.
The upgrade path your client unlocks
WhatsApp bridge
Conversations continue on the number already open on the customer's phone.
Human takeover
The owner or staff can step into any conversation, live, from one inbox.
Auto follow-up
Leads that go quiet get chased automatically, so nothing goes cold.
Get paid for every business you bring.
Embedding is free. When a business you introduced claims their dashboard and subscribes, you earn - a one-time claim bonus plus recurring rev-share.
One-time claim bonus, paid when a business you brought claims its dashboard.
Recurring share of every subscription payment, for the first year of the client's plan.
Figures shown are the current programme terms and are confirmed at signup.
Let your coding agent wire it up.
Building with Cursor, Claude Code, v0, or Lovable? Paste this into your agent - it has everything needed to install OgaChat correctly.
Add OGAMI's conversation layer (OgaChat) to this site. It answers visitor
enquiries, captures leads, and follows up automatically.
Embed it by adding this script tag before </body> (for Next.js, use the
<Script> component with strategy="afterInteractive"):
<script src="https://ogamy.co/widget.js" data-key="pk_live_yourkey"></script>
Replace pk_live_yourkey with the OGAMI public key. If you don't have one, get
early access at https://ogamy.co/partner-with-us/developers.
Full integration reference: https://ogamy.co/llms-full.txtThe widget contract.
Plain HTML
Add before </body>. Nothing else - the widget is live.
<script src="https://ogamy.co/widget.js" data-key="pk_live_yourkey"></script>Next.js
Use the next/script component.
import Script from "next/script";
// in your root layout, after {children}:
<Script
src="https://ogamy.co/widget.js"
data-key="pk_live_yourkey"
strategy="afterInteractive"
/>React, and WordPress (manual embed) snippets are in llms-full.txt.
The data-key
Format pk_live_<client>. It is a public identifier, not a secret - safe to commit and ship client-side. The server resolves it to a configuration; it never exposes prompts, internal ids, or credentials.
Config options
- theme
- Accent colour of the launcher and chat panel.
- greeting
- The opening message the assistant shows.
- position
- Launcher corner - bottom-right (default) or bottom-left.
- persona
- The assistant's display name for that business.
Set during early access, then editable by the business owner once they claim the dashboard.
Provision client sites programmatically.
Your developer key (from early access, below) authenticates as a Bearer token. Every client you create through the API is attributed to you - the same rev-share terms above apply.
curl https://ogamy.co/api/developer/me \
-H "Authorization: Bearer sk_dev_yourkey"
curl -X POST https://ogamy.co/api/developer/clients \
-H "Authorization: Bearer sk_dev_yourkey" \
-H "Content-Type: application/json" \
-d '{"business_name": "Evergreen Clinic"}'
# -> { "client": { "id", "slug", "public_key": "pk_live_evergreen-clinic", "state": "unclaimed", ... } }
curl https://ogamy.co/api/developer/clients \
-H "Authorization: Bearer sk_dev_yourkey"The public_key returned is what goes in the embed snippet's data-key - a different, non-secret value from your developer key. Rate limited to 20 client creations/hour.
Claim your developer keys.
Self-serve key issuance is rolling out. Drop your details and we'll send your early-access keys and onboarding - usually within a day.
Talk to Oga'mi - under a minute, no spam.
Prefer to copy a key format now?