# Get Google Indexing API statistics

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

## `GET /seo/google-indexing/stats`

**Get Google Indexing API statistics**

Returns aggregate Google Indexing API stats.

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/google-indexing/stats \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "total": 85,
  "success": 78,
  "failed": 7,
  "lastSubmittedAt": "2025-04-05T11:00:00.000Z"
}
```

---