GET
/
api
/
v3
/
agents
/
{agent_id}
curl --request GET \
  --url https://api.nugen.in/api/v3/agents/{agent_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "baseModel": "<string>",
    "baseModelName": "<string>",
    "createdDate": "<string>",
    "status": "<string>",
    "creator": "<string>",
    "endpoint": "<string>",
    "usageCount": 123,
    "lastUsed": "<string>",
    "performanceMetrics": {
      "averageUncertainty": 123,
      "humanInterventions": 123,
      "averageResponseTime": 123,
      "userSatisfactionScore": 123
    },
    "systemPrompt": "<string>",
    "uncertaintyThreshold": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required

Response

200
application/json

Successful Response

Response model for agent detail endpoint.