GET
/
collections
/
{collectionName}
curl --request GET \
     --url https://controller.us-east1-gcp.pinecone.io/collections/collectionName \
     --header 'accept: application/json'
{
  "name": "example-collection",
  "size": 1,
  "status": "created",
  "dimension": 1024,
  "vector_count": 50000
}
curl --request GET \
     --url https://controller.us-east1-gcp.pinecone.io/collections/collectionName \
     --header 'accept: application/json'

Authorizations

Api-Key
string
header
required

An API Key is required to call Pinecone APIs. Get yours at https://app.pinecone.io/.

Path Parameters

collectionName
string
required

The name of the collection

Response

200
application/json
Configuration information and deployment status of the index
name
string

The name of the collection.

Example:

"example-collection"

size
integer

The size of the collection in bytes.

Example:

1

status
string

The status of the collection.

Example:

"created"

dimension
integer

The dimension of the records stored in the collection.

Example:

1024

vector_count
integer

The number of records stored in the collection.

Example:

50000