Getting Started
Writing Content
API References
- Interactive Playground
- Using OpenAPI
- Using MDX
- Troubleshooting
Configurations
Advanced
- Custom Scripts
- Custom Subpaths
- Extensions
- REST API
- User Auth
- Single Sign-On (SSO)
List indexes
This operation returns a list of all indexes in a project.
GET
/
indexes
Api-Key
string
*
Api-Key
Required
string
{
"indexes": [
{
"name": "semantic-search",
"dimension": 384,
"metric": "cosine",
"host": "semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io",
"status": {
"ready": true,
"state": "Ready"
},
"spec": {
"pod": {
"environment": "us-west1-gcp",
"replicas": 2,
"shards": 2,
"pod_type": "p1.x1",
"pods": 4
}
}
},
{
"name": "image-search",
"dimension": 200,
"metric": "dotproduct",
"host": "image-search-a31f9c1.svc.us-east1-gcp.pinecone.io",
"status": {
"ready": false,
"state": "Initializing"
},
"spec": {
"serverless": {
"cloud": "aws",
"region": "us-west-2"
}
}
}
]
}
Authorizations
Api-Key
string
headerrequiredResponse
200 - application/json
The list of indexes that exist in the project.
indexes
object[]
Was this page helpful?
{
"indexes": [
{
"name": "semantic-search",
"dimension": 384,
"metric": "cosine",
"host": "semantic-search-c01b5b5.svc.us-west1-gcp.pinecone.io",
"status": {
"ready": true,
"state": "Ready"
},
"spec": {
"pod": {
"environment": "us-west1-gcp",
"replicas": 2,
"shards": 2,
"pod_type": "p1.x1",
"pods": 4
}
}
},
{
"name": "image-search",
"dimension": 200,
"metric": "dotproduct",
"host": "image-search-a31f9c1.svc.us-east1-gcp.pinecone.io",
"status": {
"ready": false,
"state": "Initializing"
},
"spec": {
"serverless": {
"cloud": "aws",
"region": "us-west-2"
}
}
}
]
}