v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-276139.8 KB
Collections

Get collection info

Get detailed information about a specific collection, including vector configuration, index type and parameters, point count, and collection status.

get/collections/{collection_name}

Path parameters

collection_namestring required
Example:my_collection

The name of the collection to retrieve information for.

Response

Collection information

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status.

Example response

{
  "time": 0.0000054,
  "status": "ok",
  "result": {
    "status": "Green",
    "optimizer_status": {
      "ok": true
    },
    "warnings": [],
    "segments_count": 1,
    "payload_schema": {},
    "name_ext": "my_collection",
    "health_status_ext": "HEALTH_GREEN",
    "index_type_ext": "INDEX_TYPE_HNSW"
  }
}