Skip to main content
POST
/
voice
/
agents
/
run
Run Agent Turn
curl --request POST \
  --url https://api.example.com/voice/agents/run \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "conversation_id": "<string>",
  "text": "<string>",
  "context": {}
}
'
{
  "response_text": "<string>",
  "tool_invocations": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Agent run request model.

agent_id
string<uuid>
required
conversation_id
string
required
text
string
required
context
Context · object
required

Response

Successful Response

Agent run response model.

response_text
string
required
tool_invocations
ToolInvocation · object[]