---
title: "List Sessions"
method: GET
path: "/sessions"
tags: ["sessions"]
---

# List Sessions

`GET /sessions`

## Query parameters

- `limit` integer
- `offset` integer
- `sort_by` 'created_at' | 'updated_at'
- `direction` 'asc' | 'desc'
- `metadata_filter` MetadataFilter

## Response `200`

Successful Response

- ListResponseSession
  - `items` Session[], required
    - `situation` string, nullable
    - `system_template` string, nullable
    - `summary` string, nullable
    - `render_templates` boolean
    - `token_budget` integer, nullable
    - `context_overflow` 'truncate' | 'adaptive', nullable
    - `auto_run_tools` boolean
    - `forward_tool_calls` boolean
    - `recall_options` union
      - VectorDocSearch
        - `limit` integer
        - `lang` string
        - `metadata_filter` object
        - `num_search_messages` integer
        - `max_query_length` integer
        - `mode` 'vector'
        - `confidence` number
        - `mmr_strength` number
      - TextOnlyDocSearch
        - `limit` integer
        - `lang` string
        - `metadata_filter` object
        - `num_search_messages` integer
        - `max_query_length` integer
        - `mode` 'text'
        - `trigram_similarity_threshold` number
      - HybridDocSearch
        - `limit` integer
        - `lang` string
        - `metadata_filter` object
        - `num_search_messages` integer
        - `max_query_length` integer
        - `mode` 'hybrid'
        - `confidence` number
        - `alpha` number
        - `mmr_strength` number
        - `trigram_similarity_threshold` number
        - `k_multiplier` integer
    - `id` string, uuid, required
    - `metadata` object, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `kind` string, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2025-05-12** `088c2ebb8988` — 5 info
  - added the optional property `items/items/recall_options/anyOf[subschema #2: TextOnlyDocSearch]/trigram_similarity_threshold` to the response with the `200` status
  - added the optional property `items/items/recall_options/anyOf[subschema #3: HybridDocSearch]/k_multiplier` to the response with the `200` status
  - added the optional property `items/items/recall_options/anyOf[subschema #3: HybridDocSearch]/trigram_similarity_threshold` to the response with the `200` status
  - the `confidence` response's property default value changed from `0` to `0.5` for the status `200`
  - …1 more
- **2025-03-03** `1f91c7da5438` — 3 info
  - added `#/components/schemas/VectorDocSearch, #/components/schemas/TextOnlyDocSearch` to the `items/items/recall_options` response property `anyOf` list for the response status `200`
  - the `mode` response property const value `hybrid` was added for the status `200`
  - the `alpha` response's property default value changed from `0.75` to `0.5` for the status `200`
- **2025-03-01** `5760ee26a52a` — 1 info
  - removed `#/components/schemas/VectorDocSearch, #/components/schemas/TextOnlyDocSearch` from the `items/items/recall_options` response property `anyOf` list for the response status `200`
- …earlier changes not shown

[Full history](https://skmtc.dev/julep-ai/apis/julep-agents-api/changes/sessions/get.md)

---

[API](https://skmtc.dev/julep-ai/apis/julep-agents-api.md) · [All operations](https://skmtc.dev/julep-ai/apis/julep-agents-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/julep-ai/julep-agents-api/revisions/55cf66f64607/schema)
