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

# dLocal callback

> Callback endpoint for dLocal fiat deposit confirmations. Verified via X-Signature HMAC-SHA256 header.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/webhooks/dlocal
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/webhooks/dlocal:
    post:
      tags:
        - Webhooks
      summary: dLocal callback
      description: >-
        Callback endpoint for dLocal fiat deposit confirmations. Verified via
        X-Signature HMAC-SHA256 header.
      operationId: webhookDlocal
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DLocalWebhookPayload'
      responses:
        '200':
          description: Webhook received
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DLocalWebhookResponse'
        '400':
          description: Invalid JSON or order_id format
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
components:
  schemas:
    DLocalWebhookPayload:
      type: object
      properties:
        status:
          type: string
          enum:
            - PAID
            - COMPLETED
        order_id:
          type: string
        amount:
          type: number
      required:
        - status
        - order_id
        - amount
    DLocalWebhookResponse:
      type: object
      properties:
        received:
          type: boolean
      required:
        - received

````