POST
/
v1
/
private
/
sell
curl --request POST \
  --url https://api.doppapp.com/v1/private/sell \
  --header 'Content-Type: application/json' \
  --header 'x-auth-token: <x-auth-token>' \
  --data '{
  "metadata": [
    {
      "client_order_id": "1234"
    }
  ],
  "orders": [
    {
      "amount": 123,
      "instrument_name": "<string>",
      "mint": true,
      "price": 123
    }
  ]
}'
{
  "tx_hash": "<string>"
}

Headers

x-auth-token
string
default:
your-token
required

Market makers authentication token

Body

application/json
orders
object[]
required
metadata
any[] | null

Response

200 - application/json
Sell order created successfully
tx_hash
string
required