fixa helps you run simulated tests, analyze production calls, fix bugs in your voice agents. oh, and we're fully open source.
get started for free with our cloud platform - no demos, no commitments, only pay for what you use.
-
Create an account at fixa.dev
-
Install the Fixa SDK:
npm install @fixa-dev/server # or yarn add @fixa-dev/server
-
Configure and use the client:
import { FixaClient } from "@fixa-dev/server"; const client = new FixaClient({ token: "YOUR_TOKEN" }); await client.agent.create({ phoneNumber: "phoneNumber", name: "name", systemPrompt: "systemPrompt", });
-
Use TypeScript types:
import { Fixa } from "@fixa-dev/server"; const request: Fixa.AgentCreateRequest = { // your request object };
-
Handle errors:
import { FixaError } from "@fixa-dev/server"; try { await client.agent.create({...}); } catch (err) { if (err instanceof FixaError) { console.log(err.statusCode); console.log(err.message); console.log(err.body); } }
For detailed setup instructions and examples, visit our documentation.