# Get redirect statistics

**Publié le** : 2026-05-08
**Catégorie** : SEO & Analytics

## `GET /redirects/stats`

**Get redirect statistics**

Returns aggregate redirect stats (total redirects, total hits, most used).

Required permissions: `redirects.view`

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |


### Examples

```bash
curl https://api.lynkow.com/v1/redirects/stats \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "total": 42,
  "active": 38,
  "inactive": 4,
  "totalHits": 1250
}
```

---