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

# Get basket information

`GET /basket/{id}/info`

This is the "full pricing breakdown" endpoint.

Call this right before checkout (or on a checkout review screen) when you need:
- basket summary totals
- platform/service fee
- delivery costs calculated per seller

What makes it useful:
- Delivery is computed from each seller's delivery configuration.
- You get one payload with the financial details needed to render final pricing.

Heads up:
- This endpoint requires an authenticated user.

## Path parameters

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

## Response `200`

The information for the items contained in the basket

- object
  - `fee` number, required — The service fee for the basket, calculated based on the total value of the items and the number of sellers
  - `summary` object, required
    - `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
  - `delivery` 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/5ed45d6a9e2f/schema)
