GET
/
v3
/
asset
/
staking
/
yieldHistory
curl --request GET \
  --url https://api.woox.io/v3/asset/staking/yieldHistory \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>'
{
    "success": true,
    "data": {
        "rows": [
            {
              "id": 53173,
              "token": "WOO",
              "stakingSize": 30100.00000000,
              "annualReward": "0.0024294",
              "yieldAmount": "0.20034259",
              "yieldTime": "1673481600.000"
            }
        ],
        "meta": {
            "total": 46,
            "recordsPerPage": 1,
            "currentPage": 1
        }
    },
    "timestamp": 1721295317627
}

Limit 10 requests per 60 seconds
Get your unique deposit address by token

{
    "success": true,
    "data": {
        "rows": [
            {
              "id": 53173,
              "token": "WOO",
              "stakingSize": 30100.00000000,
              "annualReward": "0.0024294",
              "yieldAmount": "0.20034259",
              "yieldTime": "1673481600.000"
            }
        ],
        "meta": {
            "total": 46,
            "recordsPerPage": 1,
            "currentPage": 1
        }
    },
    "timestamp": 1721295317627
}

Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

token
string
required

Token name in upper case

page
integer
default:1

the page you wish to query.

size
integer
default:25

the page size you wish to query, default = 25, 1000 at max.

Response

200 - application/json

The response is of type object.