Skip to main content
GET
/
api
/
v1
/
agents
/
{agent_id}
Get Agent By Id
curl --request GET \
  --url https://api.kollie.ai/api/v1/agents/{agent_id} \
  --header 'X-API-Key: <api-key>'
{
  "message": "Data got correctly",
  "meta": {},
  "data": {
    "name": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "organization": {
      "name": "<string>"
    },
    "skills": [
      {
        "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "scheduling",
        "exec_order": "post_call",
        "enabled": false,
        "config": {}
      }
    ],
    "latest_prompt": {
      "level": 123,
      "prompt": "<string>",
      "explanation": "<string>",
      "mitigation": "<string>",
      "harmful_intents": [],
      "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    },
    "config": {},
    "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

agent_id
string<uuid>
required

Response

Successful Response

message
string | null
default:Data got correctly
meta
Meta · object
data
IAgentReadWithOrg · object