Manage Indexes
List collections
List all collections in a project. Serverless indexes do not support collections.
get/collections
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
List all the collections in your current project.
Example response
{
"collections": [
{
"name": "example-collection",
"size": 10000000,
"status": "Initializing",
"dimension": 1536,
"vector_count": 120000,
"environment": "us-east1-gcp"
}
]
}