Get wallet transactions

GET /v1/wallet/history

Query parameters

  • page integer

    Current paginated page (defaults to 1)

  • perPage integer

    How many rows include in current page (defaults to 15 - min: 1; max 30)

  • filter[transaction_type] TransactionTypeEnum

    Show specific transaction type

    Values are deposit, buy, donate, custom, withdraw, or wallet_enrich_ext.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • success boolean
    • type string
    • data array[object]
      Hide data attributes Show data attributes object
      • id integer
      • type string
      • amount string
      • transaction_type string
      • created_at string
      • updated_at string
      • calculated boolean
    • pagination object
      Hide pagination attributes Show pagination attributes object
      • total integer
      • per_page integer
      • current_page integer
      • pages integer
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
  }
}