cURL
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.
Project API Key.
Collection name.
Describe collection success.
The response is of type object.
object
Was this page helpful?