v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Staking

Unstake assets

Execute unstaking operation to withdraw staked assets. Funds will become available after the network-specific cooldown period.

post/stakes/unstake

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

X-Request-Idstring uuid

Optional client-supplied request ID used for tracing and idempotency. Must be a UUID v4. When omitted, zerohash generates one and returns it in the response X-Request-Id header.

Request body

participant_codestring required

Participant identifier

account_labelstring required

Settlement account label. The account must already exist for the participant.

assetstring required

Asset to unstake

amountstring required

Amount to unstake

Example request

{
  "participant_code": "CUST01",
  "account_label": "general",
  "asset": "ETH",
  "amount": "5.0"
}

Response

Unstake request successfully submitted

request_idstring

Request identifier

Example response

{
  "request_id": "8bb7e203-13e0-4208-80bc-e9fdb7faa13e",
  "message": {
    "unstake_id": "c761fc96-5c44-40d4-8eb2-3fcd5d06757d",
    "participant_code": "CUST01",
    "asset": "ETH",
    "account_group": "CUST01",
    "account_label": "general",
    "amount": "5.0",
    "status": "submitted",
    "cooldown_period_days": 8,
    "estimated_available_at": "2025-09-03T16:00:00Z",
    "created_at": "2025-08-24T16:00:00Z"
  }
}