Developer First API & SDK
Developer Documentation & Embed SDK
Embed the Ask Bar with 1 line of HTML, or build custom conversational interfaces with our REST API and webhooks.
1-Line Website Header Embed
<script
src="https://cdn.flowdexx.com/v1/askbar.js"
data-[#FDX_APP_ID]="fdx_live_892314902"
async
></script>REST API Query Endpoint
Trigger Flowdexx AI responses programmatically inside custom React/Vue applications or server-side workflows.
// Send an Ask Bar query programmatically
const response = await fetch('https://api.flowdexx.com/v1/ask', {
method: 'POST',
headers: {
'Authorization': 'Bearer fdx_sk_live_9832749',
'Content-Type': 'application/json'
},
body: JSON.stringify({
question: "What is the price for 25 enterprise users?",
visitor_id: "usr_9023",
context_url: "https://yourdomain.com/pricing"
})
});
const data = await response.json();
console.log(data.answer, data.suggested_actions, data.intent);Instant Webhook Events
Subscribe to `lead.created`, `meeting.booked`, and `intent.flagged` HTTP POST payloads to trigger custom internal automation scripts.
CSS Variable Theme Override
Customize `--fdx-bg`, `--fdx-border`, `--fdx-font-family`, and `--fdx-primary-accent` to match your site design system perfectly.