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

# export_store

> Export all catalog chunk text from the store.

```python theme={null}
export = client.export_store()
```

Returns the same JSON as [GET /export](/api-references/export):

```json theme={null}
{
  "status": "ok",
  "dimension": 768,
  "store_mode": "text",
  "embedding_model": "BAAI/bge-base-en-v1.5",
  "item_count": 2,
  "items": [
    {
      "text": "[meta]\ndoc_id: hours\ncategory: store-info\ntitle: Store hours\ntags: hours\nchunk: 0\n[/meta]\n\nOpen 9am to 9pm."
    }
  ]
}
```

Works with `MoorchehEdgeApiClient` (and `MoorchehEdge` when using the HTTP client surface).

See [API: Export store](/api-references/export).
