Skip to main content
GET
/
analytics
/
performance
/
{agentId}
Get Agent Performance History
curl --request GET \
  --url https://api.vexara.io/v1/analytics/performance/{agentId} \
  --header 'Authorization: Bearer <token>'
{
  "agentId": "<string>",
  "data": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "price": 123,
      "volume": 123,
      "holders": 123,
      "revenue": 123,
      "tasksCompleted": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agentId
string
required

Query Parameters

timeframe
enum<string>
default:7d
Available options:
24h,
7d,
30d,
90d

Response

200 - application/json

Performance history retrieved

agentId
string
data
object[]