> ## 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.

# Clear store

> Delete all items and reset store mode and dimension.

## Overview

Wipes the entire store: all items, dimension, store mode, and embedding model are reset. This action **cannot be undone**.

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "http://localhost:8080/store"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - OK theme={null}
  {
    "status": "success",
    "message": "Store cleared successfully."
  }
  ```
</ResponseExample>

<Warning>
  The CLI command `moorcheh-edge clear-store` prompts for confirmation before calling this endpoint. Use `-y` to skip the prompt in scripts.
</Warning>

## Related

* [Delete items](/api-references/delete)
* [CLI: clear-store](/cli/clear-store)
* [Python: clear\_store()](/python-client/clear-store)
