Skip to main content
GET
/
indexes
# pip install "pinecone[grpc]"
from pinecone.grpc import PineconeGRPC as Pinecone

pc = Pinecone(api_key="YOUR_API_KEY")
pc.list_indexes()
{
  "indexes": [
    {
      "name": "example-index",
      "dimension": 1536,
      "metric": "cosine",
      "host": "semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io",
      "spec": {
        "pod": {
          "environment": "us-east-1-aws",
          "metadata_config": {
            "indexed": [
              "genre",
              "title",
              "imdb_rating"
            ]
          },
          "pod_type": "p1.x1",
          "pods": 1,
          "replicas": 1,
          "shards": 1
        }
      },
      "status": {
        "ready": true,
        "state": "ScalingUpPodSize"
      },
      "deletion_protection": "disabled"
    }
  ]
}
# pip install "pinecone[grpc]"
from pinecone.grpc import PineconeGRPC as Pinecone

pc = Pinecone(api_key="YOUR_API_KEY")
pc.list_indexes()

Authorizations

Api-Key
string
header
required

An API Key is required to call Pinecone APIs. Get yours from the console.

Response

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.

indexes
object[]