Results for api

9 tools · 7 with a matching recipe

httpie

CLI

Modern, 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 recipes
networking3 recipes

curl

CLI

Transfer 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 recipes
networking8 recipes · 7 verified

brave-search-mcp

MCP

MCP server exposing Brave Search API to AI agents.

mcp-server0 recipes

xh

CLI

Friendly and fast HTTP tool, reimplementation of HTTPie.

GET request~98% est.
xh GET api.example.com/users+2 more matching recipes
networking3 recipes

direnv

CLI

Load and unload environment variables depending on the current directory.

Create a basic .envrc~97% est.
echo 'export API_KEY=your_key' > .envrc && direnv allow
shell3 recipes

gh

CLI

GitHub'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_branch
git9 recipes · 6 verified

jq

CLI

Lightweight 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

CLI

A 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_count
shell3 recipes

ollama

CLI

Run large language models locally (Llama, Mistral, Gemma, etc.).

ai-ml4 recipes