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

# Accept Offramp Quote

> Accept a quote and initiate the offramp transfer



## OpenAPI

````yaml /api-reference/openapi.json post /payment/api/v1/offramp/accept-quote
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/accept-quote:
    post:
      tags:
        - Payments
      summary: Accept Offramp Quote
      description: Accept a quote and initiate the offramp transfer
      operationId: offrampAcceptQuote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OfframpAcceptQuoteRequest'
      responses:
        '200':
          description: Quote accepted and transfer initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OfframpAcceptQuoteResponse'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized - API key is missing or invalid
        '404':
          description: Quote not found
      deprecated: true
      security:
        - ApiKeyAuth: []
components:
  schemas:
    OfframpAcceptQuoteRequest:
      type: object
      required:
        - account_id
        - quote_id
      properties:
        account_id:
          type: string
          format: uuid
          example: 245fb369-d8c0-4193-b72f-cdda1b1dedd5
          description: The unique identifier of the registered destination account
        quote_id:
          type: string
          format: uuid
          example: 733bb4d7-9ae3-44f6-b73c-82909bba8352
          description: The unique identifier of the quote to accept
    OfframpAcceptQuoteResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: addfec21-2d41-4365-b4c6-0538b7df2eae
          description: Unique identifier for the offramp transfer
        status:
          type: string
          example: PAYMENT_SUBMITTED
          description: Current status of the offramp transfer
        source_amount:
          type: number
          example: 0.3
          description: Amount of crypto being converted (source amount)
        destination_amount:
          type: number
          example: 17.87
          description: Amount of fiat to be received (destination amount)
        offramp_quote_id:
          type: string
          format: uuid
          example: 733bb4d7-9ae3-44f6-b73c-82909bba8352
          description: The unique identifier of the quote that was accepted
        rail_fee:
          type: number
          example: 10
          description: Rail fee charged for the transfer
        account_details:
          type: object
          properties:
            accountId:
              type: string
              format: uuid
              example: 245fb369-d8c0-4193-b72f-cdda1b1dedd5
              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: 0d64857d-1052-4252-a95b-c118ee86efa9
              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: ''
                  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: BUSINESS
              enum:
                - INDIVIDUAL
                - BUSINESS
              description: Type of bank account (INDIVIDUAL or 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.

````