Skip to content
Discord

Developer Introduction

Welcome to the Voice Agents Developer Hub. Our API allows you to programmatically trigger voice calls, manage agents, and integrate voice capabilities directly into your applications.

All API requests should be made to:

https://api.voice-agents.miraiminds.co

Every request except GET /health carries two key headers. Workspace-scoped endpoints add a third.

HeaderDescription
x-public-keyYour public key (pk_ + 32 hex)
x-private-keyYour private key (sk_ + 64 hex) — secret, also signs webhooks
workspaceYour workspace _id (e.g. 6690a1b2c3d4e5f600000002), on workspace-scoped endpoints

Full details: v1 authentication.

  1. Get your Credentials Contact sneh@miraiminds.co to obtain your workspace, organization, and Authorization token.

  2. Choose an Assistant Identify the assistant_id of the voice agent you want to trigger.

  3. Make your first Call Use POST /v2/call/initiate to trigger an outbound call immediately.

CodeMeaning
200Success
400Bad Request (Check your JSON body)
401Unauthorized (Check your workspace/org headers)
429Rate Limit Exceeded
500Internal Server Error