---
title: "Get Assistant"
method: GET
path: "/api/assistants/{assistant_id}"
tags: ["assistants"]
---

# Get Assistant

`GET /api/assistants/{assistant_id}`

Get a single assistant by ID.

## Path parameters

- `assistant_id` string, uuid, required

## Response `200`

Successful Response

- AssistantWithConfig
  - `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.
  - `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
  - `id` string, uuid, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `deleted_at` string, date-time, nullable, required

## Other responses

- `422` — Validation Error

## Changes

- **2024-12-13** `a5e85dccbbe3` — 1 info
  - added the optional property `context_limit` to the response with the `200` status
- **2024-12-05** `df1d1cc9e050` — 1 breaking
  - the `` response property const value `gpt-4o` was removed for the status `200`
- **2024-12-03** `c3d745f0888a` — 1 breaking
  - response property `knowledge_base_id` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
- **2024-11-01** `36e7c2cdfead` — 1 warning, 2 info
  - removed the optional property `tools` from the response with the `200` status
  - added the optional property `suggested_questions` to the response with the `200` status
  - added the optional property `url_slug` to the response with the `200` status
- **2024-10-17** `855f9ee2331d` — 1 breaking, 1 info
  - response property `tools` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - the `tools` response's property default value `` was removed for the status `200`

[Full history](https://skmtc.dev/cleanlab/apis/agility/changes/api/assistants/:assistant_id/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/a5e85dccbbe3/schema)
