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

# Get One Withdrawal

> Retrieve the details of a single withdrawal by its ID. All withdrawal requests require approved KYC.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/ramp/{subaccountId}/banking/withdrawals/{withdrawalId}
openapi: 3.0.0
info:
  title: Bullring Finance API
  description: >-
    The Bullring Finance API allows you to build powerful cross-border payment
    solutions.
  version: 1.0.0
servers:
  - url: https://api.bullring.finance
    description: Production Server
  - url: https://staging-api.bullring.finance
    description: Sandbox Server
security:
  - x-api-key: []
tags:
  - name: Subaccounts
    description: Operations related to user subaccounts.
  - name: Verification
    description: Endpoints for subaccount verification, including KYC and KYB processes.
  - name: Balances
    description: Endpoints for retrieving account balances.
  - name: Deposits
    description: Endpoints for handling deposits into subaccounts.
  - name: Recipients
    description: Manage payment recipients for withdrawals.
  - name: Withdrawals
    description: Endpoints for handling withdrawals from subaccounts.
  - name: Conversions
    description: Endpoints for currency conversions.
  - name: Rates
    description: Endpoints for currency conversion rates.
  - name: Fees
    description: Endpoints for checking transaction fees.
  - name: Offramp
    description: Endpoints for handling offramp operations.
  - name: Onramp
    description: Endpoints for handling onramp operations.
paths:
  /v1/ramp/{subaccountId}/banking/withdrawals/{withdrawalId}:
    get:
      tags:
        - Withdrawals
      summary: Get One Withdrawal
      description: >-
        Retrieve the details of a single withdrawal by its ID. All withdrawal
        requests require approved KYC.
      parameters:
        - name: subaccountId
          in: path
          schema:
            type: string
          required: true
        - name: withdrawalId
          in: path
          schema:
            type: string
            example: 9aeb160d-ace3-4f42-b7f9-be38650b4b22
          required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  amount:
                    type: string
                  currency:
                    type: string
                  status:
                    type: string
                  created_at:
                    type: string
                    format: date-time
                  protocol:
                    type: string
                  description:
                    type: string
                    nullable: true
                  chain:
                    type: string
                  local_currency:
                    type: string
                  local_amount:
                    type: string
                  destinationAddress:
                    type: string
                  tx_hash:
                    type: string
                    nullable: true
                  destination_tag:
                    type: string
                    nullable: true
                  fee_amount:
                    type: string
                  fee_currency:
                    type: string
                  rate:
                    type: number
                  gross_amount:
                    type: number
                  destination_address:
                    type: string
              example:
                id: acbad679-7fcf-44a5-be65-dfa27a824113
                amount: '12.00000000'
                currency: USD
                status: pending
                created_at: '2025-11-20T08:26:07.432Z'
                protocol: erc20
                description: null
                chain: ETH
                local_currency: usdt
                local_amount: '12'
                destinationAddress: '0x22ccb74a200d7b8094b72482edd46e23cbf3af37'
                tx_hash: null
                destination_tag: null
                fee_amount: '1.08000000'
                fee_currency: USD
                rate: 1
                gross_amount: 13.08
                destination_address: 0x***37
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
              example:
                error: Unauthorized
                message: Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
              example:
                error: Forbidden
                message: You do not have permission to access this resource
        '404':
          description: Not Found - Withdrawal not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
              example:
                error: Not Found
                message: Withdrawal not found
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````