Embed & white-label the inbox¶
The get.chat Web App (the inbox UI) is open source and built to be embedded in your
own product through an <iframe> and customized with URL query parameters — so you can
ship a working WhatsApp chat experience inside your app without building one.
Embed in an iframe¶
<iframe
src="https://YOUR_STACK_NAME.inbox.getchat.360dialog.io/?chat_only=1&hide_logo=1"
allow="clipboard-write"
width="420" height="700">
</iframe>
The allow="clipboard-write" attribute is required — without it, clipboard features
(copying a message or a location) are blocked by the browser inside an iframe.
Customize with query parameters¶
Append these to the inbox URL to control appearance and behavior on load:
Parameter |
What it does |
|---|---|
|
UI language, as an Alpha-2 / ISO 639-1 code (e.g. |
|
Hide the sidebar and show a single chat. Values: |
|
Pre-apply any chat filter on load. Any filter supported by the Chats endpoint works with the |
|
Hide the get.chat logo on the loading screen. Values: |
|
Remove container margins to fill the available space. Values: |
|
Background color as a hex value without |
The current, authoritative list lives in the web-app README.
Deeper white-labeling¶
For full branding — custom logos, page title, favicon, manifest — run the open-source frontend yourself and set its environment variables. See Self-host the open-source frontend.