Get One Field From Every Item

Print one field per collection item.

This is the most common shell pattern: call a list endpoint, select one field from each item, and print one plain value per line. It is useful for loops, copy-paste, and quick checks.

Browser preview

Edit the command and run it from your browser against the live docs API.

Ready

Example output:

/images/jpeg
/images/webp
/images/gif
/images/png
/images/heic

body.self selects the self field from each item in the response body. -o lines turns the selected strings into one plain text value per line. For more complex selection, use the jq-style filter examples in Filtering.

Related: Filtering.