Official JavaScript/TypeScript SDK for Truedy
npm install trudy-sdk
import { Trudy } from 'trudy-sdk'; const trudy = new Trudy({ apiKey: 'your_api_key_here', });
const { data: agents } = await trudy.agents.list(); console.log(agents);
const call = await trudy.calls.create({ agentId: 'agent_123', phoneNumber: '+15550001234', }); console.log('Call started:', call.id);