> For the complete documentation index, see [llms.txt](https://docs.umbraco.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.umbraco.com/ai-in-umbraco/17.latest/management-api/profiles/list.md).

# List Profiles

Returns a paginated list of all profiles with optional filtering.

## Request

```http
GET /umbraco/ai/management/api/v1/profiles
```

### Query Parameters

| Parameter    | Type   | Default | Description                                |
| ------------ | ------ | ------- | ------------------------------------------ |
| `filter`     | string | -       | Filter by name (case-insensitive contains) |
| `capability` | string | -       | Filter by capability (`Chat`, `Embedding`) |
| `skip`       | int    | 0       | Number of items to skip                    |
| `take`       | int    | 100     | Number of items to return                  |

## Response

{% code title="200 OK" %}

```json
{
    "total": 3,
    "items": [
        {
            "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
            "alias": "content-assistant",
            "name": "Content Assistant",
            "capability": "Chat",
            "model": {
                "providerId": "openai",
                "modelId": "gpt-4o"
            }
        },
        {
            "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
            "alias": "summarizer",
            "name": "Content Summarizer",
            "capability": "Chat",
            "model": {
                "providerId": "openai",
                "modelId": "gpt-4o-mini"
            }
        },
        {
            "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
            "alias": "embeddings",
            "name": "Document Embeddings",
            "capability": "Embedding",
            "model": {
                "providerId": "openai",
                "modelId": "text-embedding-3-small"
            }
        }
    ]
}
```

{% endcode %}

## Examples

### List All Profiles

{% code title="cURL" %}

```bash
curl -X GET "https://your-site.com/umbraco/ai/management/api/v1/profiles" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

{% endcode %}

### Filter by Name

{% code title="cURL" %}

```bash
curl -X GET "https://your-site.com/umbraco/ai/management/api/v1/profiles?filter=assistant" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

{% endcode %}

### Filter by Capability

{% code title="cURL" %}

```bash
curl -X GET "https://your-site.com/umbraco/ai/management/api/v1/profiles?capability=Chat" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

{% endcode %}

### Paginate Results

{% code title="cURL" %}

```bash
curl -X GET "https://your-site.com/umbraco/ai/management/api/v1/profiles?skip=10&take=5" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

{% endcode %}

## Response Properties

### Item Properties

| Property     | Type   | Description       |
| ------------ | ------ | ----------------- |
| `id`         | guid   | Unique identifier |
| `alias`      | string | Unique alias      |
| `name`       | string | Display name      |
| `capability` | string | Capability type   |
| `model`      | object | Model reference   |

{% hint style="info" %}
The list endpoint returns a lightweight response. Use the [Get Profile](/ai-in-umbraco/17.latest/management-api/profiles/get.md) endpoint to retrieve full details including settings.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.umbraco.com/ai-in-umbraco/17.latest/management-api/profiles/list.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
