GET
/
collections
cURL
curl --request GET \
  --url https://{baseUrl}/collections \
  --header 'x-api-key: <api-key>'
{
"collections": [
{
"projectName": "example-project-name",
"collectionName": "example-collection-name",
"indexConfigs": {
"example-field1": {
"type": "text",
"analyzers": [
"standard"
]
},
"example-field2": {
"type": "vector",
"dimensions": 128,
"similarity": "cosine"
}
},
"numDocs": 10000,
"collectionStatus": "ACTIVE"
}
]
}

Authorizations

x-api-key
string
header
required

Project API Key.

Response

200
application/json

A list of collections matched with a projectName.

The response is of type object.