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

# Create Sell Transaction (v1)

> Create Sell Transaction



## OpenAPI

````yaml /openapi-v1.json post /api/v1/wallet/conversion/fiat/sell
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v1/wallet/conversion/fiat/sell:
    post:
      tags:
        - Offramp
      summary: Create Sell Transaction (v1)
      description: Create Sell Transaction
      operationId: create-sell-transaction-v1
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                source_id:
                  type: string
                  description: The source_id field
                fiat_symbol:
                  type: string
                  description: The fiat_symbol field
                crypto_symbol:
                  type: string
                  description: The crypto_symbol field
                fiat_amount:
                  type: number
                  description: The fiat_amount field
                crypto_amount:
                  type: number
                  description: The crypto_amount field
                payment_method:
                  type: string
                  description: The payment_method field
                uuid:
                  type: string
                  description: The uuid field
                is_first_party:
                  type: boolean
                  description: Whether the transaction is a first-party transfer.
              required:
                - source_id
                - fiat_symbol
                - crypto_symbol
                - fiat_amount
                - crypto_amount
                - payment_method
                - uuid
            example:
              payment_method: bank_transfer
              network: BSC
              destination_instrument_id: bank-account-uuid
              quote_id: c18fd5ec-70d7-4893-a96c-a6b0f4b65a30
              refund_wallet_address: 0xrefund...
              sender_wallet_address: 0xsender...
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      status:
                        type: string
                      fiat_symbol:
                        type: string
                      crypto_symbol:
                        type: string
                      fiat_amount:
                        type: integer
                      crypto_amount:
                        type: number
                      payment_method:
                        type: string
                      fee_currency:
                        type: string
                      total_fee:
                        type: integer
                      deposit_crypto_address:
                        type: string
                      deposit_network:
                        type: string
                      destination_instrument_id:
                        type: string
                      refund_wallet_address:
                        type: string
                      refund_network:
                        type: string
                      sender_wallet_address:
                        type: string
                      failure_code:
                        type:
                          - string
                          - 'null'
                      failure_desc:
                        type:
                          - string
                          - 'null'
                      created_at:
                        type: integer
                      updated_at:
                        type: integer
              example:
                success: true
                data:
                  id: c9d5e390-a79a-4f49-a4d9-a3d5b74e325d
                  status: PROCESSING
                  fiat_symbol: INR
                  crypto_symbol: USDT
                  fiat_amount: 1000
                  crypto_amount: 12.05
                  payment_method: bank_transfer
                  fee_currency: INR
                  total_fee: 5
                  deposit_crypto_address: 0xabc123...
                  deposit_network: BSC
                  destination_instrument_id: bank-account-uuid
                  refund_wallet_address: 0xrefund...
                  refund_network: BSC
                  sender_wallet_address: 0xsender...
                  failure_code: null
                  failure_desc: null
                  created_at: 1748500000000
                  updated_at: 1748500000000

````

## Related topics

- [Create Pool Sell Transaction (v1)](/api-reference/offramp/create-pool-sell-transaction-v1.md)
- [Create Buy Transaction (v1)](/api-reference/onramp/create-buy-transaction-v1.md)
- [Get Sell Transaction Details (v1)](/api-reference/offramp/get-sell-transaction-details-v1.md)
- [Create Crypto Withdraw Transaction (v1)](/api-reference/wallet-operations/create-crypto-withdraw-transaction-v1.md)
- [Create Pool Buy Transaction (v1)](/api-reference/onramp/create-pool-buy-transaction-v1.md)
