---
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
        - `include_embeddings` boolean
        - `mode` 'vector'
        - `confidence` number
        - `mmr_strength` number
      - TextOnlyDocSearch
        - `limit` integer
        - `lang` string
        - `metadata_filter` object
        - `num_search_messages` integer
        - `max_query_length` integer
        - `include_embeddings` boolean
        - `mode` 'text'
        - `trigram_similarity_threshold` number
      - HybridDocSearch
        - `limit` integer
        - `lang` string
        - `metadata_filter` object
        - `num_search_messages` integer
        - `max_query_length` integer
        - `include_embeddings` boolean
        - `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-06-26** `a5693caa5db1` — 3 info
  - added the optional property `items/items/recall_options/anyOf[subschema #1: VectorDocSearch]/include_embeddings` to the response with the `200` status
  - added the optional property `items/items/recall_options/anyOf[subschema #2: TextOnlyDocSearch]/include_embeddings` to the response with the `200` status
  - added the optional property `items/items/recall_options/anyOf[subschema #3: HybridDocSearch]/include_embeddings` to the response with the `200` status
- **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
- …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/21c8182519ef/schema)
