v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Assets

Get asset staking information

Returns staking parameters for a specific asset including APY, activation periods, and unstaking details.

get/assets/{asset}/staking_info

Path parameters

assetstring required
Example:ETH

Asset symbol (e.g., ETH, BTC, SOL)

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.

Response

Staking information retrieved successfully

request_idstring

Request identifier

Example response

{
  "request_id": "8bb7e203-13e0-4208-80bc-e9fdb7faa13e",
  "message": {
    "stakeable_assets": [
      {
        "symbol": "ETH",
        "apy_net": "3.47",
        "activation_period_days": 2,
        "payout_frequency": "daily",
        "unstaking_period_days": 8
      }
    ],
    "last_updated": "2025-08-24T15:30:00Z"
  }
}