---
title: "Creates a BRLA Sell order"
method: POST
path: "/superuser/sell"
tags: ["Sell Operations"]
---

# Creates a BRLA Sell order

`POST /superuser/sell`

Create sell order with input information

## Query parameters

- `taxId` string, required

## Request body

- SellInput
  - `pixKey` string, required — Pix key of the bank account that should receive the money deposit
  - `walletAddress` string, required
  - `chain` 'Polygon' | 'Ethereum' | 'Moonbeam' | 'Tron' | 'XRP' | 'Chiliz', required — Not all chains might be available for every operation
  - `amount` integer, required — Amount in cents (e.g. 10 would represent 0.1 tokens)
  - `referenceLabel` string — Label to tag the operation with
  - `externalId` string — External id you can input to help later conciliation. Up to 40 alphanumeric characters.
  - `coverFeeWithBrlaAccount` boolean — If your account has fees for burning and you also have a linked BRLA Account, you can use it to cover the minting fees
  - `permit` PermitData
    - `deadline` integer — UNIX milliseconds timestamp
    - `nonce` integer
    - `r` string — Hex encoded (e.g. 0x...)
    - `s` string — Hex encoded (e.g. 0x...)
    - `v` integer
  - `signature` string
  - `signatureDeadline` integer

## Response `201`

Sell order created

- SellOutput
  - `id` string

## Other responses

- `400` — Input could not be validated
- `401` — Authorization failure
- `429` — Rate limited
- `500` — Error internal to the server which probably shouldn't have happened, try again later

---

[API](https://skmtc.net/brla/apis/brla-superuser-api.md) · [All operations](https://skmtc.net/brla/apis/brla-superuser-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/brla/brla-superuser-api/versions/236b95ba5c14/schema)
