---
title: "Get Assistants"
method: GET
path: "/api/assistants/"
tags: ["assistants"]
---

# Get Assistants

`GET /api/assistants/`

Get all assistants for the current user.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AssistantWithConfigResponse[]
  - `model` 'gpt-4o'
  - `instructions` string, nullable
  - `knowledge_base_id` string, uuid, nullable, required
  - `context_limit` integer, nullable — The maximum number of context chunks to include in a run.
  - `codex_access_key` string, nullable
  - `response_validation_config` ResponseValidationCheck[], nullable
    - `name` 'trustworthiness' | 'response_helpfulness' | 'context_sufficiency' | 'response_groundedness' | 'query_ease', required
    - `is_bad_threshold` number, required
  - `tools` union[], nullable
    - union
      - CodexV0Tool
        - `type` 'codex_v0'
        - `access_key` string, required
      - NoOpTool
        - `type` 'noop'
  - `name` string, required — The name of the assistant
  - `description` string, required — The description of the assistant
  - `url_slug` string, nullable — Optional URL suffix - unique identifier for the assistant's endpoint
  - `suggested_questions` string[] — A list of suggested questions that can be asked to the assistant
  - `logo_s3_key` string, nullable — S3 object key to the assistant's logo image
  - `logo_text` string, nullable — Text to display alongside the assistant's logo
  - `id` string, uuid, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `deleted_at` string, date-time, nullable, required
  - `knowledge_base_name` string, nullable, required

## Other responses

- `422` — Validation Error

## Changes

- **2025-04-15** `f22c2d6c16f0` — 1 info
  - added the optional property `items/response_validation_config` to the response with the `200` status
- **2025-04-14** `b890eea39144` — 1 info
  - added the optional property `items/codex_access_key` to the response with the `200` status
- **2025-04-10** `d95b89c34a94` — 2 info
  - added the optional property `items/logo_s3_key` to the response with the `200` status
  - added the optional property `items/logo_text` to the response with the `200` status
- **2025-02-05** `5bc5b86db5d9` — 1 breaking
  - response property `items/knowledge_base_name` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
- **2025-01-22** `2aa38a4bc52c` — 1 warning, 3 info
  - removed the optional property `items/tools/anyOf[subschema #1]/items/anyOf[subschema #2: NoOpTool]/name` from the response with the `200` status
  - added the optional property `items/tools/anyOf[subschema #1]/items/anyOf[subschema #2: NoOpTool]/type` to the response with the `200` status
  - added `#/components/schemas/CodexV0Tool` to the `items/tools/anyOf[subschema #1]/items/` response property `anyOf` list for the response status `200`
  - removed `#/components/schemas/AlphaV0Tool` from the `items/tools/anyOf[subschema #1]/items/` response property `anyOf` list for the response status `200`

[Full history](https://skmtc.dev/cleanlab/apis/agility/changes/api/assistants/get.md)

---

[API](https://skmtc.dev/cleanlab/apis/agility.md) · [All operations](https://skmtc.dev/cleanlab/apis/agility/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cleanlab/agility/revisions/f22c2d6c16f0/schema)
