RustMinerSystem

Documentation

Get Subaccount List

GET /api/subaccount/list?coin={coin}: Get Subaccount List.

Get Subaccount List

This chapter documents the request shape, parameters, and response for GET /api/subaccount/list?coin={coin}.

Note

The endpoint contract below is carried over from the legacy RustMinerSystem documentation and organized under the current PoolNode documentation structure. Use your actual node address, secure route, and backend version when integrating.

Endpoint Contract

URL: 
/api/subaccount/list?coin={coin}

METHOD: 
GET

PARAMS:
coin 传入当前选中的币种(子账号列表中会携带选中币种的实时算力)

RESULT:
[
    {
        "hashrate": "1970324836974591.97",    // 传入币种的实时算力
        "id": 149,                            // 子账户的sid
        "name": "504132878",                  // 子账号
        "remark": null                        // 备注
    }
]

Legacy Source