# Test IndexNow submission

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

## `GET /seo/indexnow/test`

**Test IndexNow submission**

Submits a test URL to IndexNow to verify the integration is working.
Returns the response from the IndexNow API.

Required permissions: `seo.update`

### Responses

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


> **Notes:** - Requires an IndexNow key configured in SEO settings.

### Examples

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

### Response Example

```json
{
  "status": "ok",
  "url": "https://www.example.com",
  "responseCode": 200
}
```

---