curl --request GET \
--url https://{projectHost}/collections/{collectionName} \
--header 'x-api-key: <api-key>'{
"projectName": "example-project-name",
"collectionName": "example-collection-name",
"indexConfigs": {
"example-field1": {
"type": "text",
"analyzers": [
"english"
]
},
"example-field2": {
"type": "vector",
"dimensions": 128,
"similarity": "cosine"
}
},
"numDocs": 1000,
"collectionStatus": "ACTIVE"
}Get metadata of an existing collection.
curl --request GET \
--url https://{projectHost}/collections/{collectionName} \
--header 'x-api-key: <api-key>'{
"projectName": "example-project-name",
"collectionName": "example-collection-name",
"indexConfigs": {
"example-field1": {
"type": "text",
"analyzers": [
"english"
]
},
"example-field2": {
"type": "vector",
"dimensions": 128,
"similarity": "cosine"
}
},
"numDocs": 1000,
"collectionStatus": "ACTIVE"
}Project API Key.
Collection name.
Describe collection success.
Show child attributes
Project name.
Collection name.
Show child attributes
Total number of documents.
Status
CREATING, ACTIVE, DELETING Source project name.
Source collection name.
Source collection version.
Was this page helpful?