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

# Get a specific payout

> Retrieves a single payout by ID.



## OpenAPI

````yaml /openapi.yaml get /payouts/{id}
openapi: 3.0.0
info:
  title: HelloPay API
  description: HelloPay Backend API Documentation
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /payouts/{id}:
    get:
      tags:
        - Payouts
      summary: Get a specific payout
      description: Retrieves a single payout by ID.
      operationId: PayoutsController_getPayout
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier of the payout
          schema:
            type: string
      responses:
        '200':
          description: Payout found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutResponse'
        '401':
          description: Unauthorized
        '404':
          description: Payout not found
components:
  schemas:
    PayoutResponse:
      type: object
      properties:
        id:
          type: string
          description: Payout ID
          example: 123e4567-e89b-12d3-a456-426614174000
        amount:
          type: number
          description: Payout amount
          example: 100000
        amountInCents:
          type: number
          description: Payout amount in cents
          example: 10000000
        currency:
          type: string
          description: Payout currency
          example: COP
        status:
          type: string
          description: Payout status
          example: PENDING
        rail:
          type: string
          description: Payout rail
          example: BRE_B
        reference:
          type: object
          description: Payout reference
          example: OUT-2024-001
        inlineCustomer:
          description: Payout inline customer
          allOf:
            - $ref: '#/components/schemas/CustomerDataDto'
        errorCode:
          type: object
          description: Payout error code
          example: null
        createdAt:
          format: date-time
          type: string
          description: Payout created at
          example: '2024-01-01T00:00:00.000Z'
        updatedAt:
          format: date-time
          type: string
          description: Payout updated at
          example: '2024-01-01T00:00:00.000Z'
        resultAt:
          type: object
          description: Payout result at
          example: '2024-01-01T00:00:00.000Z'
        organizationId:
          type: string
          description: Payout organization ID
          example: 123e4567-e89b-12d3-a456-426614174000
        targetData:
          type: object
          description: Payout target data
          example:
            breb:
              keyString: '@ABCED1223'
      required:
        - id
        - amount
        - amountInCents
        - currency
        - status
        - rail
        - createdAt
        - updatedAt
        - organizationId
        - targetData
    CustomerDataDto:
      type: object
      properties:
        name:
          type: string
          description: Customer full name
          example: John Doe
        idType:
          type: string
          description: Type of identification document
          enum:
            - CO_CC
            - CO_CE
            - CO_NIT
            - MXN_RFC
            - PASSPORT
          example: CO_CC
        idNumber:
          type: string
          description: Identification document number
          example: '1234567890'
        phone:
          type: string
          description: Customer phone number
          example: '+573001234567'
        email:
          type: string
          description: Customer email address
          example: john.doe@example.com
      required:
        - name
        - idType
        - idNumber
        - phone
        - email

````