---
title: "Search Files"
method: POST
path: "/api/filesystem/search"
tags: ["filesystem"]
---

# Search Files

`POST /api/filesystem/search`

Searches for files matching a pattern in a directory tree.

## Request body

- SearchParams
  - `root_path` string, required — Root directory to start search from
  - `pattern` string, required — Glob pattern to search for
  - `max_results` integer — Maximum number of results to return
  - `include_hidden` boolean — Whether to include hidden files/directories

## Response `200`

Successfully searched for files

- FileInfo[]
  - `name` string, required — File or directory name
  - `path` string, required — Full path to the file or directory
  - `type` string, required — Type of entry: 'file' or 'directory'
  - `size` integer, required — Size in bytes
  - `modified_time` string, date-time, required — Last modification time
  - `is_hidden` boolean, required — Whether the file/directory is hidden
  - `extension` string, nullable — File extension if applicable

## Other responses

- `403` — Permission denied
- `404` — Root directory not found
- `422` — Validation Error
- `500` — Internal server error

## Changes

- **2026-07-13** `5424450258fc` — 1 info
  - endpoint added
- **2025-01-13** `a2d864f3a8db` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/cuse-dev/apis/fastapi/changes/api/filesystem/search/post.md)

---

[API](https://skmtc.dev/cuse-dev/apis/fastapi.md) · [All operations](https://skmtc.dev/cuse-dev/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cuse-dev/fastapi/revisions/5424450258fc/schema)
