POST
/
v2
/
sol
/
limitorder
Create Solana Limit Order
curl --request POST \
  --url http://localhost:2400/v2/sol/limitorder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "UserID": "<string>",
  "mode": "tab5",
  "target": "<string>",
  "price": 123,
  "wallets": "<string>",
  "amount": 123,
  "slippageOption": "<string>",
  "customSlippage": 123,
  "gasOption": "<string>",
  "customGas": 100000
}'
{
  "success": true,
  "message": "<string>",
  "responses": [
    {
      "wallet": "<string>",
      "status": "Success",
      "message": "<string>",
      "error": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Order request submitted for processing.

The response is of type object.