# List sitemap entries

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

## `GET /sitemap/entries`

**List sitemap entries**

Returns all custom sitemap entries.

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

### Response Example

```json
{
  "data": [
    {
      "id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
      "siteId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "url": "/pricing",
      "isExternal": false,
      "priority": 0.8,
      "changefreq": "monthly",
      "lastModified": "2025-04-01T00:00:00.000Z",
      "title": "Pricing Page",
      "createdAt": "2025-02-10T09:00:00.000Z",
      "updatedAt": "2025-04-01T12:00:00.000Z"
    },
    {
      "id": "a2b3c4d5-e6f7-8901-bcde-f12345678901",
      "siteId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "url": "https://partner-site.com/our-listing",
      "isExternal": true,
      "priority": 0.5,
      "changefreq": "yearly",
      "lastModified": null,
      "title": "Partner Listing",
      "createdAt": "2025-03-05T14:00:00.000Z",
      "updatedAt": "2025-03-05T14:00:00.000Z"
    }
  ],
  "meta": {
    "total": 12,
    "perPage": 50,
    "currentPage": 1,
    "lastPage": 1
  }
}
```

---