---
title: "List all transactions"
method: GET
path: "/v2/transactions"
tags: ["Transactions"]
---

# List all transactions

`GET /v2/transactions`

Returns a list of your transactions. The transactions are returned sorted by creation date, with the most recent transactions appearing first.

## Query parameters

- `min_created` integer
- `max_created` integer
- `order_by` '-created_at' | 'created_at'
- `limit` integer
- `starting_after` string
- `ending_before` string

## Response `200`

Returns a list of your transactions. The transactions are returned sorted by creation date, with the most recent transactions appearing first.

- object
  - `data` object, required
    - `has_more` boolean
    - `items` object[]
      - `created_at` integer — Immutable Unix timestamp in milliseconds taken at time of creation
      - `key` string — A unique identifier used to reference the object
      - `updated_at` integer — Unix timestamp in milliseconds taken at time of last update
      - `amount` integer — Transaction amount in cents for specified currency.
      - `amount_usd` integer — Transaction amount in cents converted to USD.
      - `archived` boolean — The boolean flag which determines if the transaction is archived or not
      - `category_key` string, nullable — Key of transaction category.
      - `company` object — Base schema representation of a company
        - `key` string — Unique key of this company
        - `name` string — The name of this company
      - `currency` string — Transaction currency type.
      - `customer` object, nullable
        - `key` string, nullable — Unique key of this customer.
        - `shared_id` string, nullable — A shared ID that can be used to reference the customer.
        - `sub_ids` string[], nullable
      - `partnership_key` string — Unique key of this partnership.
      - `product_key` string, nullable — Key of transaction product.
    - `total` integer, nullable
  - `message` string, required
  - `status` integer, required

## Other responses

- `400` — Bad Request Error
- `401` — Unauthorized Error
- `403` — Forbidden Error
- `404` — Not Found Error
- `500` — Internal Server Error

---

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