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

# Get Offramp Transaction Status

> Get the current status of a specific offramp transaction by its ID



## OpenAPI

````yaml /api-reference/openapi.json get /payment/api/v1/offramp-audit/status/{transaction_id}
openapi: 3.0.0
info:
  title: Carbn Connect API
  version: 1.0.0
  description: >-
    API documentation for Carbn Connect services including user onboarding, KYC,
    wallet management, and transfers.
servers:
  - url: https://api.carbnconnect.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /payment/api/v1/offramp-audit/status/{transaction_id}:
    get:
      tags:
        - Audit & Reporting
      summary: Get Offramp Transaction Status
      description: Get the current status of a specific offramp transaction by its ID
      operationId: getOfframpTransactionStatus
      parameters:
        - name: transaction_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
          description: The unique identifier of the offramp transaction
      responses:
        '200':
          description: Offramp transaction status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OfframpStatusResponse'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized - API key is missing or invalid
        '404':
          description: Transaction not found
      security:
        - ApiKeyAuth: []
components:
  schemas:
    OfframpStatusResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: 5ce6a665-a056-4989-96cd-4800f500457d
          description: The unique identifier of the offramp transfer
        status:
          type: string
          example: PAYMENT_PROCESSED
          description: Current status of the offramp transaction
        source_amount:
          type: number
          example: 0.1
          description: Amount in source currency (crypto)
        destination_amount:
          type: number
          example: 5.93
          description: Amount in destination currency (fiat after conversion and fees)
        offramp_quote_id:
          type: string
          format: uuid
          example: a120ece6-baab-400b-9d5c-7867f1cd1595
          description: The unique identifier of the quote that was used for this transfer
        rail_fee:
          type: number
          example: 0
          description: Fee charged for the payment rail
        account_details:
          type: object
          properties:
            accountId:
              type: string
              format: uuid
              example: 4ae744a7-86ce-42c2-abe3-b21ae07f619e
              description: The unique identifier of the destination account
            currency:
              type: string
              example: PHP
              description: Destination currency code (ISO 4217)
            userId:
              type: string
              format: uuid
              example: 9973efd0-410c-4b1a-991c-5a00f1581734
              description: The unique identifier of the user
            bank_account:
              type: object
              properties:
                bank_name:
                  type: string
                  example: gcash
                  description: Name of the receiving bank or wallet provider
                payment_rail:
                  type: string
                  example: INSTAPAY
                  description: Payment rail used for the transfer
                account_holder_name:
                  type: string
                  example: Van Cruz
                  description: Name of the account holder
                recipient_account_number:
                  type: string
                  example: '09171149891'
                  description: Destination account number or wallet identifier
            bank_account_type:
              type: string
              example: INDIVIDUAL
              description: Account ownership type (INDIVIDUAL, BUSINESS)
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Must be included in the x-api-key header.

````