# Get IndexNow statistics

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

## `GET /seo/indexnow/stats`

**Get IndexNow statistics**

Returns aggregate IndexNow stats (total submissions, success rate, errors).

Required permissions: `seo.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/seo/indexnow/stats \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "total": 150,
  "success": 142,
  "failed": 8,
  "lastSubmittedAt": "2025-04-05T10:30:00.000Z"
}
```

---