Conduit documentation
Transform audio and video into structured behavioral insights. Analyze communication patterns, personality traits, and more.
โก
Quickstart
Get your first behavioral report in under 5 minutes.
๐ก
API reference
Complete REST API documentation for all endpoints.
๐งช
Recipes
Curated examples for async jobs, verified webhooks, and media upload.
๐ฆ
SDKs
Stable Node.js and Python SDKs plus direct REST guidance.
๐ก
Examples
Copy-paste code for common tasks.
๐ฌ
Production workflow
Ship a webhook-first integration with launch checks.
๐ ๏ธ
Troubleshooting
Recover from auth, webhook, failed job, and rate limit issues.
Quick example
Generate a behavioral report
import { Conduit } from "@mappa-ai/conduit";
const conduit = new Conduit({
apiKey: process.env.CONDUIT_API_KEY,
});
const receipt = await conduit.reports.create({
source: { url: "https://example.com/recording.mp3" },
output: { template: "general_report" },
target: { strategy: "dominant" },
webhook: { url: "https://your-app.com/api/webhooks/conduit" },
});
console.log(receipt.jobId);
โจ What's new
- Mar 16, 2026Higher SDK timeout defaults and refreshed webhook-first setup docs
- Mar 4, 2026Analyze API cutover and standardized billing error contracts
- EarlierEntity tagging, hosted report URLs, retention lock, and richer job stages