GET
/v1/wallet/history
curl \
--request GET 'https://api.skinsmoney.gg/v1/wallet/history' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": 1,
"type": "deposit",
"amount": "0.130",
"calculated": true,
"created_at": "2025-03-08T13:11:46.000000Z",
"updated_at": "2025-03-08T13:51:21.000000Z",
"transaction_type": "deposit"
},
{
"id": 2,
"type": "withdraw",
"amount": "-0.070",
"calculated": true,
"created_at": "2025-03-08T13:11:46.000000Z",
"updated_at": "2025-03-08T13:51:21.000000Z",
"transaction_type": "deposit"
}
],
"type": "pagination",
"success": true,
"pagination": {
"links": {
"next_page": null,
"first_page": "https://api.skinsmoney.gg/v1/wallet/history?page=1",
"previous_page": "https://api.skinsmoney.gg/v1/wallet/history?page=7"
},
"pages": 8,
"total": 16,
"per_page": 2,
"current_page": 8
}
}