Search file contents in image
Regex content search inside the image’s root filesystem, powered by ripgrep.
Symlinks are never followed during traversal, hidden files are searched,
.gitignore-style files inside the image are ignored, and binary files
(containing a NUL byte) are skipped. Rust regex syntax, linear-time matching.
Authorizations
IAM bearer token issued by the Nebius IAM service. Sent as
Authorization: Bearer <iam-token>. Must be combined with the
Project header (see IAMProjectHeader).
This is the recommended authentication scheme for new clients.
Nebius project ID associated with the IAM token. Required together
with IAMBearerAuth. Identifies the project context the request is
scoped to.
Path Parameters
The UUID of the image to inspect A UUID string
"12345678-9abc-baba-deda-0123456789ab"
Query Parameters
Regex pattern to search for. May be repeated (max 16); patterns are OR-ed. Max 1024 characters each.
"^PermitRootLogin"
File or directory to search inside the image. Defaults to the rootfs root.
"/etc"
Glob to filter files (ripgrep -g semantics, "!" negates). May be repeated.
"*.conf"
Maximum matches per file (hard cap 10000).
1 <= x <= 10000Maximum total matches across all files (default 1000, hard cap 10000).
1 <= x <= 10000Case sensitivity mode.
sensitive, insensitive, smart