Skip to main content
GET
/
agents
List Agents
curl --request GET \
  --url https://api.kakiyo.com/v1/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "agent_abcdef123456",
    "name": "John Doe",
    "status": "running",
    "login": "[email protected]",
    "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

Authorization
string
header
required

Response

id
string
Example:
name
string
Example:
status
enum<string>
Available options:
setup_needed,
auth_needed,
auth_in_progress,
running,
paused,
disabled
Example:
login
string
Example:
country
string
Example:
avatar
string
Example:
nextTask
string<date-time>
Example:
alerts
object[]