---
title: "Unified search across all content types"
method: GET
path: "/api/store/search"
tags: ["v2", "store", "public"]
---

# Unified search across all content types

`GET /api/store/search`

Search across all content types (marketplace agents, blocks, documentation)
using hybrid search.

Combines semantic (embedding-based) and lexical (text-based) search for best results.

## Query parameters

- `query` string, required
- `content_types` ContentType[], nullable — Content types to search. If not specified, searches all.
- `page` integer
- `page_size` integer

## Response `200`

Successful Response

- UnifiedSearchResponse — Response model for unified search across all content types.
  - `results` UnifiedSearchResult[], required
    - `content_type` string, required
    - `content_id` string, required
    - `searchable_text` string, required
    - `metadata` object, nullable
    - `updated_at` string, date-time, nullable
    - `combined_score` number, nullable
    - `semantic_score` number, nullable
    - `lexical_score` number, nullable
  - `pagination` Pagination, required
    - `total_items` integer, required — Total number of items.
    - `total_pages` integer, required — Total number of pages.
    - `current_page` integer, required — Current_page page number.
    - `page_size` integer, required — Number of items per page.

## Other responses

- `422` — Validation Error

## Changes

- **2026-05-29** `1a8c5b8cda98` — 2 info
  - added the enum value `CHAT_SESSION` to the property `anyOf[subschema #1]/items/` of the `query` request parameter `content_types`
  - added the enum value `WORKSPACE_FILE` to the property `anyOf[subschema #1]/items/` of the `query` request parameter `content_types`
- **2026-04-30** `8c84efcb3afb` — 2 breaking
  - removed the enum value `CHAT_SESSION` from the property `anyOf[subschema #1]/items/` of the `query` request parameter `content_types`
  - removed the enum value `WORKSPACE_FILE` from the property `anyOf[subschema #1]/items/` of the `query` request parameter `content_types`

[Change history](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/changes/api/store/search/get.md)

---

[API](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server.md) · [All operations](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/significant-gravitas/autogpt-agent-server/revisions/5dc375899754/schema)
