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

# Get basket items

`GET /basket/{id}`

Think of this as the "show me my cart" endpoint.

Use it any time you need the full, current list of basket items, for example:
- loading the basket page
- refreshing after add/update/remove actions
- showing item-level basket details before checkout

How it works:
- You pass a basket ID in the path.
- The API returns the full item list for that basket.

Good to know:
- Basket IDs are caller-generated unique identifiers.
- The basket becomes associated with the user who first modifies it.
- Once owned, other users cannot update that basket.

## Path parameters

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

## Response `200`

List of items in the basket

- object

---

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