JSONPath
JSONPath filter examples
Filters let you select array items or object members whose values match a condition.
Filter by numeric values
Use expressions such as $.store.book[?@.price > 10] to find items above a threshold.
Return only the field you need
Append another selector after the filter, for example .title, to return a focused list of values.