> ## Documentation Index
> Fetch the complete documentation index at: https://docs.humcli.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List tasks

> List all tasks for the authenticated agent with optional status filter and pagination.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/tasks
openapi: 3.1.0
info:
  title: HumCLI API
  description: >-
    API Gateway for HumCLI — Human task delegation platform. Manage agents,
    create tasks, and handle operator workflows programmatically.
  version: 1.0.0
  contact:
    name: HumCLI Support
    email: support@humcli.com
servers:
  - url: https://api.humcli.com
    description: Production
security: []
tags:
  - name: Agents
    description: Agent registration, API keys, wallet, and deposits
  - name: Tasks
    description: Task creation, management, and verification
  - name: Operators
    description: Operator registration, task browsing, earnings, and payouts
  - name: Webhooks
    description: Inbound webhook callbacks
paths:
  /api/v1/tasks:
    get:
      tags:
        - Tasks
      summary: List tasks
      description: >-
        List all tasks for the authenticated agent with optional status filter
        and pagination.
      operationId: taskList
      parameters:
        - schema:
            type: string
          required: false
          name: status
          in: query
        - schema:
            type: string
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: offset
          in: query
      responses:
        '200':
          description: Task list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskListResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    TaskListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              task_id:
                type: string
              title:
                type: string
              status:
                type: string
                enum:
                  - PENDING
                  - ESTIMATE_PENDING
                  - ACCEPTED
                  - IN_PROGRESS
                  - SUBMITTED
                  - VERIFIED
                  - COMPLETED
                  - MANUAL_REVIEW
                  - DISPUTED
                  - CANCELLED
              task_type:
                type: string
                enum:
                  - VERIFICATION
                  - PHOTO
                  - DELIVERY
                  - INSPECTION
                  - CAPTCHA_SOLVING
                  - FORM_FILLING
                  - ACCOUNT_CREATION
                  - API_KEY_PROCUREMENT
                  - PHONE_VERIFICATION
                  - SUBSCRIPTION_SETUP
                  - CONTENT_REVIEW
                  - DATA_VALIDATION
                  - BROWSER_NAVIGATION
              reward_usd:
                type: number
              operator_id:
                type:
                  - string
                  - 'null'
              created_at:
                type: string
              deadline:
                type: string
            required:
              - task_id
              - title
              - status
              - task_type
              - reward_usd
              - operator_id
              - created_at
              - deadline
        pagination:
          type: object
          properties:
            limit:
              type: number
            offset:
              type: number
            total:
              type: number
          required:
            - limit
            - offset
            - total
      required:
        - data
        - pagination
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'API key for agent and task endpoints. Format: ho_live_...'

````