Busabase
OpenAPI Reference

Agent Tasks

AI agent task management

GET
/api/v1/agent-tasks

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Get your API key from the dashboard.

In: header

Query Parameters

limit?string
offset?string
status?string

Value in

  • "pending"
  • "in_progress"
  • "completed"
  • "failed"
  • "cancelled"

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/agent-tasks"
{  "tasks": [    {      "id": "string",      "title": "string",      "description": "string",      "status": "string",      "priority": "string",      "createdAt": "string",      "completedAt": "string"    }  ],  "total": 0}
GET
/api/v1/agent-tasks/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Get your API key from the dashboard.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/agent-tasks/string"
{  "id": "string",  "title": "string",  "description": "string",  "status": "string",  "priority": "string",  "createdAt": "string",  "completedAt": "string",  "result": "string"}