Connect Daxa to your existing tools and workflows. Push insights to your CRM, customer success platforms, and more.
Pay only for what you use with our flexible per-recording pricing model
// Initialize Daxa API
// Schedule a demo to receive an API key
const daxa = new DaxaAPI({
apiKey: 'your-api-key',
environment: 'production'
});
// Track user behavior
await daxa.track({
userId: 'user-123',
event: 'checkout_started',
properties: {
cart_value: 299.99,
items: 3
}
});
// Get insights for CRM integration
const insights = await daxa.insights.get({
userId: 'user-123',
timeframe: '30d'
});
// Export to your CRM
await crm.updateContact(insights.userId, {
friction_score: insights.frictionScore,
conversion_likelihood: insights.conversionLikelihood
});
Our API is designed for product and customer success teams who want actionable insights without complexity
Get detailed issue detection and behavioral insights for each individual session recording
const recording = await daxa.recordings.get({
recordingId: 'rec_abc123'
});
// Get all issues detected in this session
const issues = recording.issues;
const frictionScore = recording.frictionScore;
Query aggregated data by account for customer success teams to monitor user health and prevent churn
const accountData = await daxa.accounts.get({
accountId: 'acc_enterprise_123',
timeframe: '30d'
});
// Track account health metrics
const healthScore = accountData.healthScore;
const churnRisk = accountData.churnRisk;
Filter and aggregate behavior patterns by plan type, company size, or any custom user properties
const insights = await daxa.insights.query({
filters: {
plan_type: 'enterprise',
company_size: '>500'
},
metrics: ['conversion_rate', 'friction_score']
});
Get instant notifications for critical issues and automatically export predictions to your CRM
// Setup webhook for churn signals
await daxa.webhooks.create({
url: 'https://your-app.com/churn-alert',
events: ['high_churn_risk_detected']
});
// Export to CRM
await salesforce.updateContact(userId, {
friction_score: insights.frictionScore
});