Database
Architecture
Indexes
List indexes
This operation returns a list of all indexes in a project.
GET
/
indexes
# pip install "pinecone[grpc]"
from pinecone.grpc import PineconeGRPC as Pinecone
pc = Pinecone(api_key="YOUR_API_KEY")
pc.list_indexes()
{
"indexes": [
{
"dimension": 384,
"host": "semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io",
"metric": "cosine",
"name": "semantic-search",
"spec": {
"pod": {
"environment": "us-west1-gcp",
"pod_type": "p1.x1",
"pods": 4,
"replicas": 2,
"shards": 2
}
},
"status": {
"ready": true,
"state": "Ready"
}
},
{
"dimension": 200,
"host": "image-search-a31f9c1.svc.us-east1-gcp.pinecone.io",
"metric": "dotproduct",
"name": "image-search",
"spec": {
"serverless": {
"cloud": "aws",
"region": "us-east-1"
}
},
"status": {
"ready": false,
"state": "Initializing"
}
}
]
}
# pip install "pinecone[grpc]"
from pinecone.grpc import PineconeGRPC as Pinecone
pc = Pinecone(api_key="YOUR_API_KEY")
pc.list_indexes()
Authorizations
Response
200
application/json
This operation returns a list of all the indexes that you have previously created, and which are associated with the given project
The list of indexes that exist in the project.
Was this page helpful?
# pip install "pinecone[grpc]"
from pinecone.grpc import PineconeGRPC as Pinecone
pc = Pinecone(api_key="YOUR_API_KEY")
pc.list_indexes()
{
"indexes": [
{
"dimension": 384,
"host": "semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io",
"metric": "cosine",
"name": "semantic-search",
"spec": {
"pod": {
"environment": "us-west1-gcp",
"pod_type": "p1.x1",
"pods": 4,
"replicas": 2,
"shards": 2
}
},
"status": {
"ready": true,
"state": "Ready"
}
},
{
"dimension": 200,
"host": "image-search-a31f9c1.svc.us-east1-gcp.pinecone.io",
"metric": "dotproduct",
"name": "image-search",
"spec": {
"serverless": {
"cloud": "aws",
"region": "us-east-1"
}
},
"status": {
"ready": false,
"state": "Initializing"
}
}
]
}