> ## Documentation Index
> Fetch the complete documentation index at: https://docs.elumenta.ru/llms.txt
> Use this file to discover all available pages before exploring further.

# Assistants Marketplace

> Browse and install community-created assistants

## List Marketplace Assistants

```bash theme={null}
curl https://elumenta.ru/api/v2/assistants/marketplace \
  -H "Authorization: Bearer nb_YOUR_API_KEY"
```

```json theme={null}
{
  "assistants": [
    {
      "id": "asst_code_wizard",
      "name": "Code Wizard",
      "description": "Expert at Python, JS, debugging and refactoring",
      "model": "claude-sonnet-4.5",
      "installs": 4210,
      "rating": 4.8
    }
  ],
  "total": 87
}
```

## Install an Assistant

```bash theme={null}
curl -X POST https://elumenta.ru/api/v2/assistants/marketplace/asst_code_wizard/install \
  -H "Authorization: Bearer nb_YOUR_API_KEY"
```

Returns `201 Created`. The assistant now appears in your personal list at `GET /api/v2/assistants`.

## Use Installed Assistant

Pass the assistant ID in your generate request:

```json theme={null}
{
  "model": "claude-sonnet-4.5",
  "assistant_id": "asst_code_wizard",
  "messages": [{ "role": "user", "content": "Refactor this function..." }]
}
```
