Skip to main content
POST
/
api
/
v1
/
account
/
withdraw-from-trading
Withdraw from Trading
curl --request POST \
  --url https://api.ekiden.fi/api/v1/account/withdraw-from-trading \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "addr_from": "<string>",
  "addr_to": "<string>",
  "amount": "100.0",
  "asset_metadata": "<string>",
  "nonce": 1,
  "signature": "<string>",
  "timestamp": 1,
  "withdraw_available": true
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
addr_from
string
required
addr_to
string
required
amount
string
required
Example:

"100.0"

asset_metadata
string
required
nonce
integer<int64>
required
Required range: x >= 0
signature
string
required
timestamp
integer<int64>
required
Required range: x >= 0
withdraw_available
boolean
required

Response

200

Withdrawal initiated