> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove item from cart

> Remove item from cart

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  Cart ID
</ParamField>

<ParamField path="item_id" type="string (uuid)" required>
  Cart item ID
</ParamField>

### Responses

<ResponseField name="204" type="object">
  Item removed
</ResponseField>

<ResponseField name="404" type="ErrorResponse">
  Cart or item not found
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.stateset.com/api/v1/carts/{id}/items/{item_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>
