Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/user/creditChanges?page_size=50'
Responses
application/json {
"code": 0,
"data": {
"pagination": {
"page": 0,
"page_size": 10,
"next_token": "eyJpZCI6InFLT3doNyJ9",
"is_cursor": true
},
"changes": [
{
"changed_at": "2025-05-08T18:28:46+08:00",
"diff": 800,
"reason": "share_purchased"
},
{
"changed_at": "2025-04-27T09:55:43+08:00",
"diff": 800,
"reason": "share_purchased"
},
{
"changed_at": "2025-03-20T17:52:20+08:00",
"diff": -300,
"reason": "pay"
},
{
"changed_at": "2025-03-18T20:30:43+08:00",
"diff": -1,
"reason": "adjust"
}
]
},
"msg": ""
}
Modified at 2025-08-12 07:13:02