---
title: "Get Session"
method: GET
path: "/sessions/{session_id}"
tags: ["sessions"]
---

# Get Session

`GET /sessions/{session_id}`

## Path parameters

- `session_id` string, uuid, required

## Response `200`

Successful Response

- Session
  - `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 `recall_options/anyOf[subschema #1: VectorDocSearch]/include_embeddings` to the response with the `200` status
  - added the optional property `recall_options/anyOf[subschema #2: TextOnlyDocSearch]/include_embeddings` to the response with the `200` status
  - added the optional property `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 `recall_options/anyOf[subschema #2: TextOnlyDocSearch]/trigram_similarity_threshold` to the response with the `200` status
  - added the optional property `recall_options/anyOf[subschema #3: HybridDocSearch]/k_multiplier` to the response with the `200` status
  - added the optional property `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 `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`
- …earlier changes not shown

[Full history](https://skmtc.dev/julep-ai/apis/julep-agents-api/changes/sessions/:session_id/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)
