SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Wallet

Get my wallet transactions

GET/api/v1/wallet/me/transactions

Lists the seller's wallet ledger — order earnings, payouts, and adjustments.

Requires Authorization
SELLER only
Session

Query parameters

pagenumber
Defaults to 1.
limitnumber
Max 100. Defaults to 20.
typestring
Filter by transaction type.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/wallet/me/transactions \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "transactions": [
      {
        "id": "wtx_1a2b3c",
        "sellerProfileId": "sp_2b3c4d",
        "type": "ORDER_EARNING",
        "amount": "22.00",
        "currency": "USD",
        "orderId": "ord_5e6f7a",
        "createdAt": "2026-02-15T11:00:00.000Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 1,
      "totalPages": 1
    }
  }
}