Skip to main content
GET
/
api
/
v1
/
agents
/
{id}
/
public
Get public agent details by ID
curl --request GET \
  --url https://dev-chat-engine.actualize.ae/api/v1/agents/{id}/public \
  --header 'Authorization: Bearer <token>'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "fullName": "Customer Support Agent",
  "description": "An AI agent that helps with customer support queries",
  "avatarUrl": "https://example.com/avatar.png",
  "role": "Customer Support"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the agent

Response

Returns public agent details

id
string
required

Unique identifier of the agent

Example:

"123e4567-e89b-12d3-a456-426614174000"

fullName
string
required

Name of the agent

Example:

"Customer Support Agent"

description
string
required

Description of the agent

Example:

"An AI agent that helps with customer support queries"

role
string
required

The role of the agent

Example:

"Customer Support"

avatarUrl
string

Avatar URL of the agent

Example:

"https://example.com/avatar.png"