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

> Delete items by id.

## SDK

```python theme={null}
resp = edge.delete(["item-1", "item-2"])
print(resp["deleted"], resp["not_found_ids"])
```

## HTTP client

```python theme={null}
resp = client.delete_items({"ids": ["item-1"]})
```

See [API: Delete items](/api-references/delete).
