---
title: "Get Stats - API Documentation"
description: "Get statistical information about auctions including price trends and sell-through rates. Requires a paid plan (not available on free accounts)."
url: "https://oldcarsdata.com/docs/stats"
dateModified: "2026-06-19T00:00:00.000Z"
type: "api-docs"
tags: ["API", "documentation", "Stats"]
---

# Get Stats

**GET** `/stats`

Get statistical information about auctions including price trends and sell-through rates. Requires a paid plan (not available on free accounts).

## Code Examples

### cURL

```bash
curl "https://api.oldcarsdata.com/stats?make=Toyota&year_min=1980&year_max=1990" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### JavaScript

```javascript
const response = await fetch(
  'https://api.oldcarsdata.com/stats?make=Toyota&year_min=1980&year_max=1990',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY'
    }
  }
);
const data = await response.json();
```

### Python

```python
import requests

response = requests.get(
    'https://api.oldcarsdata.com/stats',
    params={'make': 'Toyota', 'year_min': 1980, 'year_max': 1990},
    headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
```

## Response

```json
{
  "total_sales": 150,
  "average_price": 42500,
  "median_price": 40000,
  "lowest_price": 15000,
  "highest_price": 125000,
  "sell_through_rate": 0.75,
  "price_trend": [
    { "date": "2024-01", "avg_price": 41000, "volume": 12 },
    { "date": "2024-02", "avg_price": 43000, "volume": 15 }
  ]
}
```

## Related Endpoints

- [Get Auctions](/docs/auctions)
- [Get Live Auctions](/docs/auctions-live)
- [Get Auction Bids](/docs/auction-bids)
- [Get Makes](/docs/makes)
- [Get Models](/docs/models)
