---
title: "List purchases"
method: GET
path: "/user/purchases"
tags: ["user-purchases"]
---

# List purchases

`GET /user/purchases`

List purchases for the authenticated buyer.

Use this endpoint for purchase history overview pages.

Query behavior:
- Supports pagination and sorting by creation/update timestamps.
- Page size is capped at 50.
- Useful for infinite-scroll and paged table UIs.

Response behavior:
- Returns purchase summaries, not full order-level detail.
- Includes derived seller-count information for each purchase.
- Use the purchase `id` from this list with the purchase detail endpoint for deep inspection.

## Query parameters

- `page` integer — Page number, defaults to 1
- `size` integer — Results per page, defaults to 20
- `sort` 'createdAt' | 'updatedAt' — Field to sort by
- `direction` 'asc' | 'desc' — Sort direction

## Response `200`

User purchases

- PurchaseSummary[] — Paginated list of purchases for a user
  - `id` string, cuid2, required — Unique identifier for the purchase
  - `customerEmailAddress` string, email, required — Email address used for the purchase
  - `deliveryCharge` integer, required — Delivery charge in pence
  - `deliveryAddress` DeliveryAddress, required — Address where the order should be delivered
    - `name` string, required
    - `city` string, nullable
    - `country` string, nullable
    - `line1` string, nullable
    - `line2` string, nullable
    - `postal_code` string, nullable
    - `state` string, nullable
  - `subtotal` integer, required — Subtotal in pence
  - `total` integer, required — Total in pence
  - `serviceFee` integer, required — Service fee in pence
  - `status` 'ACTIVE' | 'REFUNDED' | 'COMPLETED' — Purchase status
  - `createdAt` string, date-time, required — Timestamp when the purchase was created
  - `updatedAt` string, date-time, required — Timestamp when the purchase was last updated
  - `sellers` integer, required — Number of orders in the purchase
  - `invoiceId` string, nullable — Invoice identifier generated for the purchase

---

[API](https://skmtc.net/managem/apis/managem-api.md) · [All operations](https://skmtc.net/managem/apis/managem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/managem/managem-api/versions/6367b514f6ea/schema)
