diff --git a/_includes/code/howto/manage-data.collections.py b/_includes/code/howto/manage-data.collections.py
index ffab3b26..85a28327 100644
--- a/_includes/code/howto/manage-data.collections.py
+++ b/_includes/code/howto/manage-data.collections.py
@@ -1105,4 +1105,15 @@
# END UpdateCollectionShards
+# START DropVectorIndex
+collection = client.collections.get("Article")
+
+# Drop the vector index for a named vector
+# This is a destructive operation — the index is removed from disk
+result = collection.config.delete_vector_index(vector_name="title")
+
+print(result) # True if successful
+# END DropVectorIndex
+
+
client.close()
diff --git a/_includes/feature-notes/drop-vector-index.mdx b/_includes/feature-notes/drop-vector-index.mdx
new file mode 100644
index 00000000..0d187a1e
--- /dev/null
+++ b/_includes/feature-notes/drop-vector-index.mdx
@@ -0,0 +1,6 @@
+:::caution Preview — added in `v1.37`
+
+This is a preview feature. The API may change in future releases.
+
+:::
+
diff --git a/docs/weaviate/config-refs/indexing/vector-index.mdx b/docs/weaviate/config-refs/indexing/vector-index.mdx
index be0acd7d..35586fe2 100644
--- a/docs/weaviate/config-refs/indexing/vector-index.mdx
+++ b/docs/weaviate/config-refs/indexing/vector-index.mdx
@@ -360,6 +360,16 @@ import MultiVectorSupport from "/_includes/multi-vector-support.mdx";
+## Drop a vector index
+
+import V137Preview from '/_includes/feature-notes/drop-vector-index.mdx';
+
+
+
+You can drop (delete) a vector index from a collection. This is a destructive, irreversible operation — the index data is removed from disk and cannot be rebuilt on the same collection. The vector data itself is preserved, but vector searches on the dropped index will no longer work.
+
+See [How-to: Drop a vector index](../../manage-collections/vector-config.mdx#drop-a-vector-index) for code examples.
+
## Further resources
- [Concepts: Vector index](../../concepts/indexing/vector-index.md)
diff --git a/docs/weaviate/manage-collections/vector-config.mdx b/docs/weaviate/manage-collections/vector-config.mdx
index 6e7cd832..4f65fc58 100644
--- a/docs/weaviate/manage-collections/vector-config.mdx
+++ b/docs/weaviate/manage-collections/vector-config.mdx
@@ -438,6 +438,27 @@ Read more about index types & compression in:
+## Drop a vector index
+
+import V137Preview from '/_includes/feature-notes/drop-vector-index.mdx';
+
+
+
+Drop (delete) a vector index from a collection. This is a destructive, irreversible operation — the index data is removed from disk and cannot be rebuilt on the same collection. The vector data itself is preserved, but vector searches on the dropped index will no longer work.
+
+Specify the named vector whose index to drop:
+
+
+
+
+
+
+
## Property-level settings
Configure individual properties in a collection. Each property can have it's own configuration. Here are some common settings: