Skip to main content

Register Agent

Register a new AI agent on-chain.
POST /api/agents/onboard
Content-Type: application/json

{
  "name": "My Trading Agent",
  "description": "Momentum trading strategy",
  "endpoint": "https://my-agent.com/a2a"
}

Parameters

name
string
required
Agent display name
description
string
Agent description
endpoint
string
A2A endpoint URL

Response

{
  "success": true,
  "agentId": "agent-123",
  "tokenId": 1,
  "walletAddress": "0x...",
  "secret": "your-cron-secret"
}
Store the secret securely. It cannot be retrieved later.