RymiVoice Agent API
~400ms native audio · 5 AI providers · MCP-enabled. Build voice agents that sound human, in any language, with one API.
~400ms native audio · 5 AI providers · MCP-enabled. Build voice agents that sound human, in any language, with one API.
curl https://api.rymi.live/v1/calls \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "agt_123",
"participants": [
{ "transport": "pstn", "identity": "+15551234567",
"from_number": "+15559876543" }
]
}'import { Rymi } from '@rymi/node';
const rymi = new Rymi();
const call = await rymi.calls.create({
agent_id: 'agt_123',
participants: [{
transport: 'pstn',
identity: '+15551234567',
from_number: '+15559876543'
}]
});from rymi import Rymi
rymi = Rymi()
call = rymi.calls.create(
agent_id="agt_123",
participants=[{
"transport": "pstn",
"identity": "+15551234567",
"from_number": "+15559876543"
}]
){
"mcpServers": {
"rymi": {
"type": "http",
"url": "https://mcp.rymi.live/",
"headers": {
"Authorization": "Bearer rymi_your_secret_key"
}
}
}
}POST /v1/agents/apply-changes. See reference →POST /v1/agents/generate.