Accepts JSON-RPC 2.0 requests for agent-to-agent communication within a
session context. Supported methods: message/send (synchronous) and
message/stream (SSE streaming). This is the primary endpoint for all
agent-to-agent interaction on the platform.
curl --request POST \
--url https://mesh.svantic.com/send \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "message/send",
"params": {
"message": {
"messageId": "01JQ_EXAMPLE",
"role": "user",
"parts": [
{
"kind": "text",
"text": "Summarize the attached document."
}
]
}
},
"id": 1
}
'{
"jsonrpc": "2.0",
"result": {
"message": {
"messageId": "01JQ_REPLY",
"role": "agent",
"parts": [
{
"kind": "text",
"text": "Here is a concise summary…"
}
]
}
},
"id": 1
}Documentation Index
Fetch the complete documentation index at: https://docs.svantic.com/llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://mesh.svantic.com/send \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "message/send",
"params": {
"message": {
"messageId": "01JQ_EXAMPLE",
"role": "user",
"parts": [
{
"kind": "text",
"text": "Summarize the attached document."
}
]
}
},
"id": 1
}
'{
"jsonrpc": "2.0",
"result": {
"message": {
"messageId": "01JQ_REPLY",
"role": "agent",
"parts": [
{
"kind": "text",
"text": "Here is a concise summary…"
}
]
}
},
"id": 1
}