JMESPath Query Guide

Use JMESPath expressions to filter, search, and transform JSON data.

✔ Basic Example

people[0].name
Returns the first person's name

✔ Filter Example

people[?age > `30`]
Returns people older than 30

✔ Project Fields

people[*].name
Returns all names from people array

✔ Nested JSON

company.departments[?name=='IT'].employees[*].id
Gets employee IDs from IT department

✔ Wildcard Search

items[*].details.price
Extract all prices from items

Tip: Use backticks for numbers and single quotes for strings.