GET
{
"agentId": "string",
"balance": 1000000000,
"solBalance": 1.0
}Last updated
Get agent
GET /api/agents/:agentId
Returns the agent record.
Response: 200 OK — agent object; 404 if not found.
Get agent balance
GET /api/agents/:agentId/balance
Returns the agent’s wallet balance (lamports and SOL).
Response: 200 OK
{
"agentId": "string",
"balance": 1000000000,
"solBalance": 1.0
}Errors: 404 if agent not found; 500 on RPC or internal error.
List agents
GET /api/agents
Returns all registered agents.
Response: 200 OK — array of agent objects.
Last updated

