WisdomAI supports four embed paths. Each path renders a different slice of the WisdomAI interface inside your iframe. All paths require a valid JWT passed as theDocumentation Index
Fetch the complete documentation index at: https://docs.wisdom.ai/llms.txt
Use this file to discover all available pages before exploring further.
token query parameter.
Replace
{ACCOUNT}.wisdom.ai with the base URL of your WisdomAI tenant — the same domain you use to log in. Both wisdom.ai and askwisdom.ai are valid depending on your deployment.Supported paths
The paths below map to different parts of the WisdomAI interface. Use the one that matches what you want to expose to your embedded users.Full-app embed
/embed/search renders the full WisdomAI interface: search, dashboards, and chat in a single view.
Dashboards list view
/embed/dashboards renders the list of all dashboards the impersonated user has access to.
Specific dashboard
/embed/dashboards/[id] renders a single dashboard by ID.
Specific chat
/embed/chat/[conversationId] renders a specific chat conversation. You can optionally pass a messageid parameter to automatically scroll to a specific response.
iframe requirements
All embed paths require theallow="microphone; camera" attribute on the iframe element. Omitting it disables voice input and camera features within the embedded interface.
Related articles
Embedding Overview
Full server-side embedding flow including authentication
Embed a Dashboard
Step-by-step guide for embedding a specific dashboard
Embed Chat
Step-by-step guide for embedding a chat interface
Session Management
Token expiry, refresh flow, and switching users