History

Provider the history of token transfers for the account in the main chain

get
Path parameters
accountstringRequired

Wallet address of the provider

Example: 0x5650CD3E6E8963B43D21FAE60EE7A03BCEFCE766
Query parameters
pageNumbernumberRequired

Current Page Number

Example: 1
pageSizenumberRequired

Number of items per page

Example: 10
Responses
200Success
application/json
get
GET /v1/token/main/history/{account}?pageNumber=1&pageSize=10 HTTP/1.1
Host: 
Accept: */*
200Success
{
  "code": 0,
  "data": [
    {
      "from": "0x5650CD3E6E8963B43D21FAE60EE7A03BCEFCE766",
      "to": "0x3FE8D00143bd0eAd2397D48ba0E31E5E1268dBfb",
      "value": "10000000000000000000000000",
      "blockTimestamp": "1722945138"
    }
  ],
  "error": {
    "message": "Failed to check the validity of parameters"
  }
}