Agents
List agents
Returns all agents for the authenticated team
GET
/
agents
curl --request GET \
--url https://api.kakiyo.com/v1/agents \
--header 'Authorization: Bearer <token>'
[
{
"id": "agent_abcdef123456",
"name": "John Doe",
"status": "running",
"login": "john.doe@example.com",
"country": "US",
"avatar": "https://example.com/avatar.jpg",
"nextTask": "2023-06-16T10:30:00Z",
"alerts": [
{
"type": "auth",
"subType": "2fa_required",
"message": "Please enter the verification code sent by LinkedIn to your email/phone",
"severity": "warning"
}
]
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
List of agents
The response is of type object[]
.
curl --request GET \
--url https://api.kakiyo.com/v1/agents \
--header 'Authorization: Bearer <token>'
[
{
"id": "agent_abcdef123456",
"name": "John Doe",
"status": "running",
"login": "john.doe@example.com",
"country": "US",
"avatar": "https://example.com/avatar.jpg",
"nextTask": "2023-06-16T10:30:00Z",
"alerts": [
{
"type": "auth",
"subType": "2fa_required",
"message": "Please enter the verification code sent by LinkedIn to your email/phone",
"severity": "warning"
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.