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
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"
}
}