npm
TypeScript
Fully typed TypeScript/JavaScript client for Node.js, Deno, and Bun.
npm install @polymorfa/sdkimport { Polymorfa } from '@polymorfa/sdk'
const polymorfa = new Polymorfa({ apiKey: process.env.POLYMORFA_KEY! })
await polymorfa.sessions.messages.send('my-session', {
to: '5511999999999',
type: 'text',
text: { body: 'Hello from Polymorfa!' },
})