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

# Create a retail offramp quote



## OpenAPI

````yaml POST /v1/api/quotes
openapi: 3.0.0
info:
  title: EQXPay API
  description: >-
    EQX v2.5 staging API for admin, liquidity-provider, and integrator
    operations.
  version: 2.5.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/api/quotes:
    post:
      tags:
        - Offramp
      summary: Create a retail offramp quote
      operationId: RetailOfframpController_createQuote
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateQuoteDto'
      responses:
        '201':
          description: Created
        '400':
          description: Bad request
        '401':
          description: Unauthorized
      security:
        - bearer: []
components:
  schemas:
    CreateQuoteDto:
      type: object
      properties:
        market:
          type: string
          description: Market code for the offramp corridor (e.g. KE, NG)
        source_asset:
          type: string
          description: Source crypto asset symbol (e.g. USDC, USDT)
        source_amount:
          type: string
          description: Amount of source asset to convert (decimal string)
        payout_method:
          type: string
          enum:
            - MOBILE_MONEY
            - BANK_TRANSFER
          description: Payout method
        beneficiary_id:
          type: string
          description: Beneficiary ID to receive the payout
        sortField:
          type: string
      required:
        - market
        - source_asset
        - source_amount
        - payout_method
        - beneficiary_id
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````