API responses are usually arrays of objects, not plain values — a list of orders, users, or records. Combine an array index with a dot to reach one field of one item: $.orders[1].status gets the status field of the second order (index 1). This is the query shape that comes up most often in practice, combining the two patterns from the other two path pages on this site.