Skip to main content
POST
/
agents
/
get
List agent instances
curl --request POST \
  --url https://api.svantic.com/agents/get \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_type": "string"
}
'
{
  "ok": true,
  "total_instances": 0,
  "agent_types": {
    "sample_key": [
      {
        "instance_id": "string",
        "url": "https://mesh.example.com/send",
        "status": "available",
        "current_sessions": 0,
        "max_concurrent_sessions": 0,
        "last_seen": "2026-03-31T12:00:00.000Z",
        "registered_at": "2026-03-31T12:00:00.000Z",
        "agent_version": "string",
        "provider_organization": "string"
      }
    ]
  }
}

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.

Body

application/json
agent_type
string

Optional filter by agent type.

Response

Agent instance list grouped by type.

ok
boolean
required
total_instances
integer
required
agent_types
object
required

Instances grouped by agent_type key.