Skip to main content
GET
/
v1
/
agents
Listar Agents
curl --request GET \
  --url https://api.integrabot.ai/v1/agents \
  --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"
  },
  {
    "uuid": "f0e1d2c3-b4a5-6789-0abc-def123456789",
    "name": "Agente de Suporte",
    "is_active": true,
    "model": "gpt-4o-mini",
    "communication_style": "friendly",
    "tools_count": 3,
    "created_at": "2025-01-12T14:00:00Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Lista de agents.

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"