Indexes
Describe an index
Get a description of an index.
GET
Authorizations
Path Parameters
The name of the index to be described.
Response
200
application/json
Configuration information and deployment status of the index.
The IndexModel describes the configuration and status of a Pinecone index.
The name of the index. Resource name must be 1-45 characters long, start and end with an alphanumeric character, and consist only of lower case alphanumeric characters or '-'.
Required string length:
1 - 45
Example:
"example-index"
The dimensions of the vectors to be inserted in the index.
Required range:
1 <= x <= 20000
Example:
1536
The distance metric to be used for similarity search. You can use 'euclidean', 'cosine', or 'dotproduct'.
Available options:
cosine
, euclidean
, dotproduct
The URL address where the index is hosted.
Example:
"semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io"
Example:
{
"pod": {
"environment": "us-east-1-aws",
"metadata_config": {
"indexed": ["genre", "title", "imdb_rating"]
},
"pod_type": "p1.x1",
"pods": 1,
"replicas": 1,
"shards": 1
}
}
Example:
{
"ready": true,
"state": "ScalingUpPodSize"
}
Whether deletion protection is enabled/disabled for the index.
Available options:
disabled
, enabled
Was this page helpful?