# List search profiles

**Publié le** : 2026-05-12
**Catégorie** : Search

## `GET /search/profiles`

**List search profiles**

List the public search profiles exposed on the site. Each profile
describes a curated search index (a subset of content types,
custom ranking rules, fields). Use `slug` to invoke a profile via
`/search/{profileSlug}`.

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |


> **Notes:** Cache: `Cache-Control: public, max-age=300`. Rate-limit bucket:
> general.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/search/profiles"
```

```javascript
const res = await fetch(`https://api.lynkow.com/public/${siteId}/search/profiles`)
const { data } = await res.json()
```

### Response Example

```json
"{\n  \"data\": [\n    { \"slug\": \"default\", \"name\": \"Default\", \"description\": \"Site-wide search\", \"fields\": [\"title\", \"excerpt\", \"body\"] },\n    { \"slug\": \"docs\", \"name\": \"Docs\", \"description\": \"Documentation only\", \"fields\": [\"title\", \"body\", \"headings\"] }\n  ]\n}\n"
```

---