Skip to main content
GET
/
wallet
/
transactions
List transactions
curl --request GET \
  --url https://api.proxyjam.com/public/v1/wallet/transactions \
  --header 'X-API-Key: <api-key>'
{
  "transactions": [
    {
      "id": "<string>",
      "user_id": "<string>",
      "wallet_id": "<string>",
      "amount": 123,
      "currency": "<string>",
      "transaction_type": "<string>",
      "status": "<string>",
      "payment_method": "<string>",
      "external_id": "<string>",
      "description": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the transaction history for the authenticated user’s wallet, sorted by creation date descending.

Query parameters

limit
integer
default:"100"
Number of results to return. Min 1, max 1000.
offset
integer
default:"0"
Number of results to skip for pagination.

Response

transactions
array
List of transaction objects.
total
integer
Total number of transactions returned.

Example

curl "https://api.proxyjam.com/public/v1/wallet/transactions?limit=5" \
  -H "X-API-Key: pj_AbCdEf..."