---
title: "Create OTC Withdrawal Order"
method: POST
path: "/withdraw/open/otc/api/order/create"
---

# Create OTC Withdrawal Order

`POST /withdraw/open/otc/api/order/create`

Create an OTC withdrawal order after obtaining a quote.

## Headers

- `X-GatePay-Certificate-ClientId` string, required
- `X-GatePay-Signature` string, required
- `X-GatePay-Timestamp` string, required
- `X-GatePay-Nonce` string, required

## Request body

- WithdrawalCreateRequest
  - `quoteToken` string, required — Quote token returned by the quote API.
  - `bankAccountId` string, required — Destination bank account ID for fiat settlement.
  - `cryptoCurrency` string, required — Cryptocurrency being sold. Currently supported: USDT, USDC.
  - `fiatCurrency` string, required — Fiat currency to be settled out. Currently supported: USD.
  - `cryptoAmount` string, required — Crypto amount for the withdrawal order.
  - `fiatAmount` string, required — Expected fiat settlement amount.
  - `type` string, required — Order type. Use SELL for off-ramp.
  - `clientOrderId` string, required — Merchant-defined unique order ID.

## Response `200`

Success

- OrderResponse
  - `code` string — Business response code.
  - `status` string — Top-level request status.
  - `errorMessage` string — Error message when the request fails.
  - `data` OrderRecord
    - `orderId` string — Gate OTC order ID.
    - `status` string — Current order status.
    - `cryptoCurrency` string — Cryptocurrency code.
    - `fiatCurrency` string — Fiat currency code.
    - `cryptoAmount` string — Cryptocurrency amount.
    - `fiatAmount` string — Fiat amount.
    - `fiatRate` string — Settlement fiat rate.
    - `bankAccountId` string — Bank account ID associated with the order.
    - `clientOrderId` string — Merchant-defined order ID.
    - `type` string — OTC order type such as BUY or SELL.
    - `createTime` integer — Order creation timestamp.
    - `updateTime` integer — Last update timestamp.
    - `errMsg` string — Failure reason.
    - `tradeFee` string — Fee amount.
    - `finalFiatAmount` string — Final settled fiat amount.
    - `bankSlipInfo` string — Bank slip information.
    - `promCode` string — Promotion code passed when creating the order.

---

[API](https://skmtc.net/gate/apis/gatepay-otc-fiat-api.md) · [All operations](https://skmtc.net/gate/apis/gatepay-otc-fiat-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gate/gatepay-otc-fiat-api/versions/07cd4870de6a/schema)
