# Get Vector Stats

> Get vector statistics for all the vector indices associated with the authenticated user

## Endpoint

`GET https://api.upstash.com/v2/vector/index/stats`

## Responses

### 200 - Statistics for the vector indices retrieved successfully

- `record_count` (integer): Total number of indexed records across all indexes
- `request` (integer): Total API requests count across all indexes
- `bandwidth` (integer): Total bandwidth usage in bytes across all indexes
- `storage` (integer): Total storage usage in bytes across all indexes
- `billing` (number): Current billing amount across all indexes
- `rerank_count` (integer): Total reranking operations count across all indexes

## cURL

```bash
curl --request GET \
  --url https://api.upstash.com/v2/vector/index/stats \
  --header 'Authorization: Bearer <token>'
```
