Skip to main content
POST
/
runs
/
{run_id}
/
messages
Send message to run
curl --request POST \
  --url https://api.duvo.ai/v1/runs/{run_id}/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "message": {
    "id": "<string>",
    "type": "<string>",
    "role": "<string>",
    "timestamp": "<string>",
    "text_content": "<string>"
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key authentication. Get your API key from the Duvo dashboard.

Path Parameters

run_id
string<uuid>
required

The run's unique identifier

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$

Body

application/json
message
string
required

The message content to send to the agent

Minimum string length: 1

Response

Default Response

message
object
required

The message that was posted to the run