> ## 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.

# Get task details

> Get full task details including proof, guardian result, and operator info.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/tasks/{id}
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/{id}:
    get:
      tags:
        - Tasks
      summary: Get task details
      description: >-
        Get full task details including proof, guardian result, and operator
        info.
      operationId: taskGet
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Task details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskDetailResponse'
        '404':
          description: Task not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - apiKeyAuth: []
components:
  schemas:
    TaskDetailResponse:
      type: object
      properties:
        task_id:
          type: string
        title:
          type: string
        description:
          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
        location:
          type:
            - object
            - 'null'
          properties:
            lat:
              type: number
            lng:
              type: number
            address:
              type: string
          required:
            - lat
            - lng
            - address
        reward_usd:
          type: number
        platform_fee_usd:
          type: number
        deadline:
          type: string
        proof_requirements:
          type: array
          items:
            type: string
        proof:
          type:
            - object
            - 'null'
          properties:
            photos:
              type: array
              items:
                type: string
            notes:
              type: string
            submittedAt:
              type: string
          required:
            - photos
            - notes
            - submittedAt
        guardian_result:
          type:
            - object
            - 'null'
          properties:
            decision:
              type: string
              enum:
                - APPROVE
                - REJECT
                - MANUAL_REVIEW
            confidence:
              type: number
            reasoning:
              type: string
          required:
            - decision
            - confidence
            - reasoning
        operator:
          type:
            - object
            - 'null'
          properties:
            id:
              type: string
            name:
              type: string
            rating:
              type: number
          required:
            - id
            - name
            - rating
        callback_url:
          type:
            - string
            - 'null'
        estimate_minutes:
          type:
            - number
            - 'null'
        accepted_at:
          type:
            - string
            - 'null'
        submitted_at:
          type:
            - string
            - 'null'
        verified_at:
          type:
            - string
            - 'null'
        completed_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        sandbox:
          type: boolean
      required:
        - task_id
        - title
        - description
        - status
        - task_type
        - location
        - reward_usd
        - platform_fee_usd
        - deadline
        - proof_requirements
        - proof
        - guardian_result
        - operator
        - callback_url
        - estimate_minutes
        - accepted_at
        - submitted_at
        - verified_at
        - completed_at
        - created_at
        - sandbox
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'API key for agent and task endpoints. Format: ho_live_...'

````