jq — JSON filter — openbash
Filter and reshape JSON, the way every program here emits it.
jq
jq is a command on the openbash shell, reachable over HTTP, SSH and MCP with one key. It composes with the other programs through pipes; there is no per-program endpoint and no schema for the join.
biotech drug label semaglutide | jq -r '.data.route'
help
jq: filter and reshape JSON. USAGE jq [-c] [-r] FILTER [FILE]... Reads stdin when given no file, which is how it is nearly always used: `biotech drug label X | jq -r '.data.route'`. RETURNS JSON on stdout, or raw strings with `-r`. WHY IT MATTERS HERE Programs emit JSON one object per line precisely so this composes across them. Two programs that were never designed together join through jq without a schema for the join.