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

# Get disbursement details



## OpenAPI

````yaml /openapi/v0/openapi.json get /v0/disbursements/{id}
openapi: 3.0.0
info:
  title: Superbank API
  description: Superbank Developer API for Instant Settlement
  version: '1.0'
  contact: {}
servers:
  - url: https://api-sandbox.superbank.co
    description: Sandbox
security: []
tags: []
paths:
  /v0/disbursements/{id}:
    get:
      tags:
        - Disbursements
      summary: Get disbursement details
      operationId: DisbursementsController_findOne
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisbursementResponseDto'
        '404':
          description: Disbursement not found
      security:
        - api-key: []
components:
  schemas:
    DisbursementResponseDto:
      type: object
      properties:
        id:
          type: string
          example: d4e5f6a7-b8c9-4d0e-a1f2-3b4c5d6e7f8a
        destination_id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        payment_id:
          type: object
          example: f1e2d3c4-b5a6-7890-abcd-ef1234567890
        amount:
          type: string
          example: '1000.00'
        currency:
          type: string
          example: USDC
        status:
          type: string
          enum:
            - PENDING
            - PROCESSING
            - COMPLETED
            - FAILED
          example: PENDING
        failure_reason:
          type: object
        completed_at:
          type: object
          example: '2026-01-20T15:25:00.000Z'
        created_at:
          type: string
          example: '2026-01-20T15:17:12.805Z'
        updated_at:
          type: string
          example: '2026-01-20T15:20:00.000Z'
      required:
        - id
        - destination_id
        - amount
        - currency
        - status
        - created_at
        - updated_at
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key

````