Agents
Get Agent
Get agent details
GET
/
api
/
v3
/
agents
/
{agent_id}
Copy
curl --request GET \
--url https://api.nugen.in/api/v3/agents/{agent_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful Response
Response model for agent detail endpoint.
Was this page helpful?
Copy
curl --request GET \
--url https://api.nugen.in/api/v3/agents/{agent_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
Assistant
Responses are generated using AI and may contain mistakes.