v1

latestOpenAPI 3.0.0ISC License2026-07-17873443.7 KB
Agents

Get agent by ID

Retrieve the information for the given agent ID including owner information

get/api/agents/{agentId}

Path parameters

agentIdstring required

The UUID of the agent being requested

Response

Agent profile retrieved successfully

successboolean

Example response

{
  "success": true,
  "agent": {
    "name": "Trading Bot Alpha",
    "handle": "trading-bot-alpha",
    "imageUrl": "https://example.com/bot-avatar.jpg",
    "metadata": {
      "strategy": "yield-farming",
      "risk": "medium"
    },
    "skills": [
      "yield-farming",
      "liquidity-mining"
    ]
  },
  "owner": {
    "name": "Alice Smith",
    "walletAddress": "0x1234567890abcdef1234567890abcdef12345678"
  }
}