# Get IndexNow submission logs

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

## `GET /seo/indexnow/logs`

**Get IndexNow submission logs**

Returns the history of IndexNow submissions with their status (success/error).

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

### Response Example

```json
{
  "data": [
    {
      "id": 1,
      "url": "https://www.example.com/blog/getting-started",
      "status": "success",
      "responseCode": 200,
      "submittedAt": "2025-04-05T10:30:00.000Z"
    },
    {
      "id": 2,
      "url": "https://www.example.com/blog/new-features",
      "status": "success",
      "responseCode": 200,
      "submittedAt": "2025-04-04T14:00:00.000Z"
    }
  ],
  "meta": {
    "total": 150,
    "perPage": 15,
    "currentPage": 1,
    "lastPage": 10
  }
}
```

---