# Get Google Indexing API logs

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

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

**Get Google Indexing API logs**

Returns the history of Google Indexing API submissions.

Required permissions: `seo.view`

### Responses

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


> **Notes:** - Requires Google Search Console integration configured for the site.

### Examples

```bash
curl https://api.lynkow.com/v1/seo/google-indexing/logs \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": [
    {
      "id": 1,
      "url": "https://www.example.com/blog/getting-started",
      "type": "URL_UPDATED",
      "status": "success",
      "submittedAt": "2025-04-05T11:00:00.000Z"
    },
    {
      "id": 2,
      "url": "https://www.example.com/blog/new-features",
      "type": "URL_UPDATED",
      "status": "error",
      "error": "Quota exceeded",
      "submittedAt": "2025-04-04T15:00:00.000Z"
    }
  ],
  "meta": {
    "total": 85,
    "perPage": 15,
    "currentPage": 1,
    "lastPage": 6
  }
}
```

---