---
title: "Stream Agentic Search"
method: POST
path: "/collections/{readable_id}/search/agentic/stream"
tags: ["collections"]
---

# Stream Agentic Search

`POST /collections/{readable_id}/search/agentic/stream`

Streaming agentic search via Server-Sent Events. Returns real-time events as the agent searches.

## Path parameters

- `readable_id` string, required

## Request body

- AgenticSearchRequest — Agentic search request — full agent loop with tool calling.
  - `query` string, required — Search query text.
  - `thinking` boolean — Enable extended thinking / chain-of-thought.
  - `filter` FilterGroup[], nullable — Filter groups (combined with OR).
    - `conditions` FilterCondition[], required — Filter conditions within this group, combined with AND
      - `field` 'entity_id' | 'name' | 'created_at' | 'updated_at' | 'breadcrumbs.entity_id' | 'breadcrumbs.name' | 'breadcrumbs.entity_type' | 'airweave_system_metadata.entity_type' | 'airweave_system_metadata.source_name' | 'airweave_system_metadata.original_entity_id' | 'airweave_system_metadata.chunk_index' | 'airweave_system_metadata.sync_id' | 'airweave_system_metadata.sync_job_id', required — Filterable fields in search. Uses dot notation for nested fields (e.g., breadcrumbs.name, airweave_system_metadata.source_name).
      - `operator` 'equals' | 'not_equals' | 'contains' | 'greater_than' | 'less_than' | 'greater_than_or_equal' | 'less_than_or_equal' | 'in' | 'not_in', required — Supported filter operators.
      - `value` union, required — Value to compare against. Use a list for 'in' and 'not_in' operators.
        - string
        - integer
        - boolean
        - string[]
        - integer[]
  - `limit` integer, nullable — Max results. None means agent decides.

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/airweave-ai/apis/airweave.md) · [All operations](https://skmtc.net/airweave-ai/apis/airweave/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/airweave-ai/airweave/versions/bf410c28c0c6/schema)
