Built for AI
Programmatic inboxes, structured messages, and webhooks designed for LLM agents and automation pipelines.
Create programmatic inboxes, send and receive mail, and wire webhooks into your agents β with a REST API and TypeScript SDK.
Install
Add the official SDK, set your API key, and create your first agent inbox.
npm install @myxara/sdk-jsyarn add @myxara/sdk-jsbun add @myxara/sdk-jsimport { MyxaraClient } from '@myxara/sdk-js'
const client = new MyxaraClient({
apiKey: process.env.MYXARA_API_KEY!,
})
const inbox = await client.inboxes.create({
local_part: 'support',
name: 'Support Agent',
})
console.log(inbox.address) // [email protected]Learn
New to Myxara? Follow the guide. Integrating? Jump straight to the SDK reference.
What Myxara is, how multi-tenant inboxes work, and core concepts before you write code.
Read guide βCreate an inbox, send a message, and verify delivery in under ten minutes.
Start building βClient options, resources, error types, and webhook payloads for production apps.
Browse API βUse cases
Common patterns for agents that send, receive, and act on email at scale.
Auto-triage inbound mail, draft replies with your LLM, and escalate to humans when confidence is low.
Give each campaign or SDR agent a dedicated inbox. Qualify leads and book meetings from email threads.
Trigger internal tools from incoming messages β parse attachments, route by intent, and log every event.
Platform
Ship with the REST API and SDK, then debug in the dashboard as you move to production.
@myxara/sdk-js with types and automatic retries.message.received and delivery events to your endpoints.Start with the quick start, then open the examples for webhooks and production hardening.