---
title: "Get basket summary"
method: GET
path: "/basket/{id}/summary"
tags: ["basket"]
---

# Get basket summary

`GET /basket/{id}/summary`

Use this when you only need quick totals, not the full item list.

Great for:
- navbar basket badges
- mini-cart totals
- lightweight polling for basket changes

Why this exists:
- It is cheaper than fetching every item row.
- It gives you enough data to show "how much is in the basket" at a glance.

## Path parameters

- `id` string, required — The ID of the basket to retrieve

## Response `200`

The summary totals for the basket

- object
  - `items` integer, required — Total number of items in the basket or for a seller
  - `cards` integer, required — Total number of cards in the basket or for a seller
  - `products` integer, required — Total number of products in the basket or for a seller
  - `subTotal` integer, required — Total price of the items in pence in the basket or for a seller
  - `sellers` object, required

---

[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)
