Embed
Embedded Analytics — White-label BI in your product with 3 lines of code
Multi-Tenant Configurations
Loading...
SDK Integration
iFrame
<iframe
src="${OWNBI_BASE_URL}/embed/v1/emb_xxx"
width="100%"
height="600"
frameborder="0"
allow="clipboard-write"
></iframe>React
soon// @ownbi/react-sdk is not published yet — track at
// https://github.com/anshulvp/psi-ownbi/issues/17
//
// Until then, use the iFrame snippet on the left + react-iframe.
import IFrame from 'react-iframe';
<IFrame
url={`${OWNBI_BASE_URL}/embed/v1/${embedToken}`}
width="100%"
height="600px"
/>JavaScript
soon// The OwnBI.embed() CDN bundle is not published yet — track
// at https://github.com/anshulvp/psi-ownbi/issues/17. Until then,
// drop the iFrame snippet into your page directly.Python
soon# The ownbi Python SDK is not published yet — track at
# https://github.com/anshulvp/psi-ownbi/issues/17. Until then,
# call the embed-token endpoint with httpx and render the iFrame
# in your template.