Skip to main content
GET
/
v1
/
agents
/
{uuid}
Detalhes do Agent
curl --request GET \
  --url https://api.integrabot.ai/v1/agents/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Agente de Vendas",
  "is_active": true,
  "model": "gpt-4o",
  "communication_style": "professional",
  "tools_count": 5,
  "created_at": "2025-01-10T08:00:00Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string<uuid>
required

UUID do agent.

Response

Dados do agent.

uuid
string<uuid>
Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

name
string
Example:

"Agente de Vendas"

is_active
boolean
Example:

true

model
string
Example:

"gpt-4o"

communication_style
string | null
Example:

"professional"

tools_count
integer
Example:

5

created_at
string<date-time>
Example:

"2025-01-10T08:00:00Z"