GET
/
projects
/
{projectName}
/
collections
curl --request GET \
  --url https://{baseUrl}/projects/{projectName}/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.

Path Parameters

projectName
string
required

Project name.

Response

200
application/json

A list of collections matched with a projectName.

The response is of type object.