Skip to main content
GET
/
ai
/
agents
/
{agent_id}
/
details
Get AI agent full details
curl --request GET \
  --url https://api.wacht.dev/ai/agents/{agent_id}/details \
  --header 'Authorization: <api-key>'
{
  "id": "1234567890123456789",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T10:30:00Z",
  "deployment_id": "9876543210987654321",
  "name": "Customer Support Agent",
  "description": "Handles customer inquiries",
  "configuration": {},
  "tools_count": 5,
  "knowledge_bases_count": 2,
  "integrations": [
    {
      "id": "1111111111111111111",
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z",
      "deployment_id": "9876543210987654321",
      "agent_id": "1234567890123456789",
      "integration_type": "slack",
      "name": "Slack Integration",
      "config": {}
    }
  ],
  "tools": [],
  "knowledge_bases": []
}

Authorizations

Authorization
string
header
required

API key authentication (format: Bearer {api_key})

Path Parameters

agent_id
string
required

AI Agent ID

Response

AI agent full details

id
string

Agent ID

Example:

"1234567890123456789"

created_at
string<date-time>

Creation timestamp

Example:

"2024-01-15T10:30:00Z"

updated_at
string<date-time>

Last update timestamp

Example:

"2024-01-15T10:30:00Z"

deployment_id
string

Deployment ID

Example:

"9876543210987654321"

name
string

Agent name

Example:

"Customer Support Agent"

description
string | null

Agent description

Example:

"Handles customer inquiries"

configuration
object

Agent configuration

tools_count
integer
Example:

5

knowledge_bases_count
integer
Example:

2

integrations
object[]

Agent integrations with webhook URLs

tools
object[]

Tools associated with the agent

knowledge_bases
object[]

Knowledge bases associated with the agent