---
title: "Get my transactions"
method: GET
path: "/api/v1/transaction"
tags: ["User transactions"]
---

# Get my transactions

`GET /api/v1/transaction`

Get all transactions of the current user

## Query parameters

- `filter_by` 'DEPOSIT' | 'WITHDRAWAL' | 'REFERRAL BONUS' | 'PROMO CODE' | 'REFUND'
- `order_by` 'created_at' | 'amount'
- `order_direction` 'asc' | 'desc'
- `page` integer
- `size` integer

## Response `200`

Successful Response

- PageResponseTransactionDTO
  - `items` ResponseTransactionDTO[], required
    - `amount` string, required
    - `currency` string, nullable
    - `type` 'DEPOSIT' | 'WITHDRAWAL' | 'REFERRAL BONUS' | 'PROMO CODE' | 'REFUND', required
    - `details` string, required
    - `paymentProvider` string
    - `id` string, uuid, required
    - `createdAt` string, date-time, required
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required
  - `pages` integer, required

## Other responses

- `401` — Authentication required.
- `403` — Access denied.
- `422` — Validation Error

---

[API](https://skmtc.dev/pwapps/apis/curie-api.md) · [All operations](https://skmtc.dev/pwapps/apis/curie-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pwapps/curie-api/revisions/b0af9064dfef/schema)
