Skip to content

acquire_reward_history

yuanshibtc edited this page Mar 14, 2024 · 3 revisions

Acquire Reward Summary

name type required description
coin string yes coin type(NMC, DOGE, SYS, ELA)
start_date string no start date
end_date string no end date
page int no page
limit int no page limit
  • Response:
{
    "code": 0,
    "data": {
        "count": 7,
        "curr_page": 1,
        "data": [
            {
                "coin": "DOGE",
                "date": "2023-04-19",
                "pplns_profit": "366.07702259",
                "pps_profit": "0",
                "solo_profit": "0",
                "total_profit": "366.07702259"
            }
        ],
        "has_next": false,
        "total": 7,
        "total_page": 1
    },
    "message": "OK"
}