---
title: "List transactions"
method: GET
path: "/transactions"
tags: ["Account"]
---

# List transactions

`GET /transactions`

Retrieves a list of transactions initiated by the user

## Query parameters

- `cursor` string
- `end_at` integer
- `page_size` integer
- `start_at` integer

## Response `200`

OK

- object
  - `next` string — The pointer to fetch next set of records (null if there are no records left)
  - `prev` string — The pointer to fetch previous set of records (null if there are no records left)
  - `results` object[] — Array of paginated results
    - `completed_at` integer — Timestamp from when the transaction was completed
    - `created_at` integer — Timestamp from when the transaction was sent to blockchain gateway
    - `hash` string — Tx Hash of the settled trade // Hash of the transaction
    - `id` string — Unique string ID of the event that triggered the transaction. For example, fill ID or liquidation ID
    - `state` 'ACCEPTED_ON_L1' | 'ACCEPTED_ON_L2' | 'NOT_RECEIVED' | 'RECEIVED' | 'REJECTED' | 'REVERTED' — Status of the transaction on Starknet
    - `type` 'TRANSACTION_FILL' | 'TRANSACTION_LIQUIDATE' | 'TRANSACTION_SETTLE_MARKET' — Event that triggered the transaction

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2.md) · [All operations](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradeparadex/paradex-rest-api-2/versions/6a76453d754c/schema)
