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

> Retrieve the status of a crypto withdrawal via offramp.



## OpenAPI

````yaml /api-reference/openapi.json get /v2/ramp/{subaccountId}/banking/offramp/{offrampId}
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:
  /v2/ramp/{subaccountId}/banking/offramp/{offrampId}:
    get:
      tags:
        - Offramp
      summary: Get One Offramp
      description: Retrieve the status of a crypto withdrawal via offramp.
      parameters:
        - name: subaccountId
          in: path
          schema:
            type: string
          required: true
        - name: offrampId
          in: path
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  type:
                    type: string
                  status:
                    type: string
                    description: >-
                      The status of the offramp. Options: paid, completed,
                      failed.
                  created_at:
                    type: string
                    format: date-time
                  account_id:
                    type: string
                  client_offramp_reference:
                    type: string
                  from:
                    type: object
                    properties:
                      amount:
                        type: string
                      asset:
                        type: string
                      network:
                        type: string
                      address:
                        type: string
                  to:
                    type: object
                    properties:
                      currency:
                        type: string
                      gross_amount:
                        type: string
                      net_amount:
                        type: string
                      recipient_id:
                        type: string
                  pricing:
                    type: object
                    properties:
                      fx_rate:
                        type: string
                      fees:
                        type: object
                        properties:
                          offramp_fee:
                            type: string
                          offramp_fee_currency:
                            type: string
                  settlement:
                    type: object
                    description: >-
                      Details about the settlement based on the status (paid,
                      completed, failed).
                    properties:
                      withdrawal_id:
                        type: string
                        description: Present if 'completed' or 'failed'.
                      estimated_at:
                        type: string
                        format: date-time
                        description: Present if 'completed'.
                      end_to_end_id:
                        type: string
              example:
                id: f7ffc6d9-eb45-400e-af86-a4de4a9357f1
                type: offramp
                status: completed
                created_at: '2026-01-28T16:31:20.002Z'
                account_id: bb9bb7f8-53a1-4d2b-9d44-972462772789
                client_offramp_reference: 5a26b319-fc68-4ee2-83f2-19889571618a
                from:
                  amount: '130'
                  asset: USDC
                  network: SOL-DEVNET
                  address: ATCfujGip9Mxu2Aa778qXeQXocNVHqTSgiBZSnM1eMzY
                to:
                  currency: BRL
                  gross_amount: '675.36'
                  net_amount: '672.66'
                  recipient_id: 979a654b-cf63-4302-8bb2-060918949331
                pricing:
                  fx_rate: '5.195089'
                  fees:
                    offramp_fee: '2.7'
                    offramp_fee_currency: brl
                settlement:
                  withdrawal_id: 1a8e489f-f2b5-4916-bee5-e65dd999ac4e
                  estimated_at: '2026-01-28T16:32:10.524Z'
                  end_to_end_id: E3513612020260128163100000066555
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````