Agents
Register New Agent
Register a new AI agent in the system with its Ed25519 public key. The agent_id will be automatically generated if not provided.
post/agents
Request body
Example request
{
"agent_id": "agent-custom-001",
"name": "MyAwesomeAgent",
"description": "Agent for processing order data",
"public_key": "AAAAC3NzaC1lZDI1NTE5AAAAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
}Response
Agent registered successfully
Example response
{
"agent_id": "agent-ebd9cd4a-1234-5678-90ab-cdef01234567",
"name": "MyAwesomeAgent",
"description": "Agent for processing order data",
"public_key": "AAAAC3NzaC1lZDI1NTE5AAAAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
"status": "active"
}