JSONPath: Extract a Specific Array Element

To pull one item out of an array by position, use bracket notation with a zero-based index: $.tags[0] gets the first element, $.tags[2] the third. There's no negative-index or "last element" shorthand — you need to know (or compute) the index.