> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getplu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Wallet Transactions

> Retrieve your partner wallet transaction history

Returns a paginated list of wallet transactions — credits and debits for KYC fees, card funding, withdrawals, and other operations.

<ParamField header="Authorization" type="string" required>
  Bearer token. Example: `Bearer sk_staging_your_api_key`
</ParamField>

<ParamField query="skip" type="integer" default="0">
  Number of records to skip for pagination.
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Maximum number of records to return.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://services-staging.getplu.com/api/v1/partner/wallet/transactions?skip=0&limit=20" \
    -H "Authorization: Bearer sk_staging_your_api_key"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://services-staging.getplu.com/api/v1/partner/wallet/transactions?skip=0&limit=20',
    {
      headers: {
        'Authorization': 'Bearer sk_staging_your_api_key',
      },
    }
  );
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "message": "Wallet transactions retrieved",
    "data": {
      "transactions": [
        {
          "_id": "507f1f77bcf86cd799439011",
          "partnerId": "acme-partner-abc123",
          "amount": 1.5,
          "currency": "USD",
          "type": "debit",
          "status": "success",
          "action": "card-creation-fee",
          "narration": "Card creation fee for user acme-user-abc123",
          "serviceCardId": "acme-card-xyz789jkl012mno",
          "createdAt": "2025-01-15T10:30:00.000Z"
        },
        {
          "_id": "507f1f77bcf86cd799439012",
          "partnerId": "acme-partner-abc123",
          "amount": 100,
          "currency": "USD",
          "type": "debit",
          "status": "success",
          "action": "funding",
          "narration": "Card funding for acme-card-xyz789jkl012mno",
          "serviceCardId": "acme-card-xyz789jkl012mno",
          "createdAt": "2025-01-15T11:00:00.000Z"
        }
      ],
      "total": 42,
      "skip": 0,
      "limit": 20
    }
  }
  ```
</ResponseExample>

### Transaction Actions

| Action              | Description                           |
| ------------------- | ------------------------------------- |
| `funding`           | Card funding debit                    |
| `withdrawal`        | Card withdrawal credit                |
| `card-creation-fee` | Fee charged for card creation         |
| `kyc-fee`           | Fee charged for user KYC verification |
