# Get Search Stats

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

## Endpoint

`GET https://api.upstash.com/v2/search/stats`

## Responses

### 200 - Statistics for the search 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/search/stats \
  --header 'Authorization: Bearer <token>'
```
