Skip to main content
GET
/
api
/
v1
/
agents
/
{id}
Get Agent
curl --request GET \
  --url https://api.example.com/api/v1/agents/{id}
Get detailed information about a specific AI agent.

Request

GET /api/v1/agents/{id}
Authorization: Bearer YOUR_API_KEY

Path Parameters

ParameterTypeRequiredDescription
idstringYesUUID of the agent

Response

FieldTypeDescription
idstringAgent UUID
providerstringProvider type
namestringDisplay name
descriptionstringDescription (or null)
is_activebooleanWhether the agent is active
created_atstringISO-8601 creation timestamp
updated_atstringISO-8601 last update timestamp

Examples

curl "https://app.preclinical.dev/api/v1/agents/6ba7b810-9dad-11d1-80b4-00c04fd430c8" \
  -H "Authorization: Bearer $API_KEY"

Success Response

{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "provider": "vapi",
  "name": "Healthcare Assistant",
  "description": "Production voice agent for patient triage",
  "is_active": true,
  "created_at": "2026-01-15T08:00:00Z",
  "updated_at": "2026-01-28T12:30:00Z"
}

Errors

CodeDescription
AGENT_NOT_FOUNDAgent not found or doesn’t belong to your organization