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

# Delete items

> Delete items by id.

## Overview

Remove one or more items by id. Store mode and dimension are unchanged.

<ParamField body="ids" type="array" required>
  Non-empty array of item id strings.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "http://localhost:8080/items" \
    -H "Content-Type: application/json" \
    -d '{"ids": ["item-1", "item-2"]}'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - OK theme={null}
  {
    "status": "success",
    "deleted": 1,
    "not_found_ids": ["item-2"]
  }
  ```
</ResponseExample>

## Related

* [Clear store](/api-references/clear-store)
* [CLI: delete](/cli/delete)
* [Python: delete()](/python-client/delete)
