httpie
CLIModern, user-friendly command-line HTTP client for the API era.
GET request with JSON response~98% est.
http GET api.example.com/users+2 more matching recipesnetworking3 recipes
curl
CLITransfer data from or to a server using various protocols.
POST JSON from a fileVerified macOS · Linux
curl -sS -X POST -H 'Content-Type: application/json' -d @body.json https://api.example.com/items+3 more matching recipesnetworking8 recipes · 7 verified
xh
CLIFriendly and fast HTTP tool, reimplementation of HTTPie.
GET request~98% est.
xh GET api.example.com/users+2 more matching recipesnetworking3 recipes
direnv
CLILoad and unload environment variables depending on the current directory.
Create a basic .envrc~97% est.
echo 'export API_KEY=your_key' > .envrc && direnv allowshell3 recipes
gh
CLIGitHub's official CLI for managing repos, PRs, issues, and more.
Read one field from the GitHub APIVerified macOS
gh api repos/OWNER/REPO --jq .default_branchgit9 recipes · 6 verified
jq
CLILightweight and flexible command-line JSON processor.
Pretty-print JSON from an API response~99% est.
curl -s https://api.example.com/data | jq '.'text-processing7 recipes · 6 verified
nushell
CLIA new type of shell that understands structured data.
Parse JSON from command~93% est.
http get https://api.github.com/repos/nushell/nushell | get stargazers_countshell3 recipes
ollama
CLIRun large language models locally (Llama, Mistral, Gemma, etc.).
ai-ml4 recipes