Vector Operations
Get index stats
Return statistics about the contents of an index, including the vector count per namespace, the number of dimensions, and the index fullness.
Serverless indexes scale automatically as needed, so index fullness is relevant only for pod-based indexes.
post/describe_index_stats
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Request body
Response
A successful response.
Example response
{
"dimension": 1024,
"index_fullness": 0.4,
"namespaces": {
"": {
"vectorCount": 50000
},
"example-namespace-2": {
"vectorCount": 30000
}
},
"totalVectorCount": 80000
}