Skip to main content
GET
/
api
/
v1
/
tasks
List tasks
curl --request GET \
  --url https://api.humcli.com/api/v1/tasks \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "task_id": "<string>",
      "title": "<string>",
      "status": "PENDING",
      "task_type": "VERIFICATION",
      "reward_usd": 123,
      "operator_id": "<string>",
      "created_at": "<string>",
      "deadline": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

X-API-Key
string
header
required

API key for agent and task endpoints. Format: ho_live_...

Query Parameters

status
string
limit
string
offset
string

Response

200 - application/json

Task list

data
object[]
required
pagination
object
required