Skip to main content
GET
/
agents
/
{agentId}
Get Agent Details
curl --request GET \
  --url https://api.vexara.io/v1/agents/{agentId} \
  --header 'Authorization: Bearer <token>'
{
  "agentId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "category": "<string>",
  "model": "<string>",
  "capabilities": [
    "<string>"
  ],
  "tokenAddress": "<string>",
  "creator": "<string>",
  "tokenomics": {
    "totalSupply": 123,
    "circulatingSupply": 123,
    "price": 123,
    "marketCap": 123,
    "revenueShare": 123
  },
  "performance": {
    "totalRevenue": 123,
    "tasksCompleted": 123,
    "successRate": 123,
    "averageResponseTime": 123
  },
  "statistics": {
    "holders": 123,
    "volume24h": 123,
    "priceChange24h": 123
  },
  "status": "active",
  "deployedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header

Path Parameters

agentId
string
required

Response

200 - application/json

Agent details retrieved successfully

agentId
string
name
string
description
string
category
string
model
string
capabilities
string[]
tokenAddress
string
creator
string
tokenomics
object
performance
object
statistics
object
status
enum<string>
Available options:
active,
paused,
deprecated
deployedAt
string<date-time>