Enter a YAML document and use path expressions to quickly locate and extract data. Supports dot notation, bracket notation, and wildcards. Pure client-side processing.
The YAML Path Finder helps developers and DevOps quickly locate specific data in YAML configuration files. Whether it's Kubernetes configs, Docker Compose files, or CI/CD pipeline definitions, just enter a path expression to precisely extract the value you need.
A YAML path expression locates specific data within a YAML document. It supports dot notation (e.g., server.port) and bracket notation (e.g., servers[0].name) to precisely access nested structures and array elements.
Three syntaxes: 1) Dot notation server.port for nested keys; 2) Bracket notation servers[0] for array elements; 3) Mixed syntax servers[0].port for arrays and nested keys. Wildcard * is also supported.
No. All YAML parsing and path queries run locally in your browser. No data is sent to any server. Your configuration files and data remain completely private.
Paste your YAML content and click "List All Paths". The tool generates a complete list of all value paths. You can also enter a path expression directly to query a specific value.
This tool supports basic YAML anchors (&anchor) and aliases (*alias). Complex features like merge keys may require simplification before use.