一键导入
httpie
HTTPie human-friendly HTTP client. Use for API testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
HTTPie human-friendly HTTP client. Use for API testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Android Studio IDE with emulator and profiler. Use for Android development.
Atom hackable text editor from GitHub. Use for extensible editing.
Babel JavaScript compiler for compatibility. Use for transpiling.
Biome fast formatter and linter. Use for code quality.
Bitbucket Git repository hosting with Pipelines. Use for Atlassian teams.
Confluence team documentation platform. Use for documentation.
| name | httpie |
| description | HTTPie human-friendly HTTP client. Use for API testing. |
HTTPie started as a CLI (http get example.com) and now includes a beautiful Desktop app (2025). It is famous for its human-friendly syntax.
http POST api.com name=John is faster than curl -X POST -d '{"name":"John"}' ....: for headers (User-Agent:Chrome), = for string data (name=John), := for raw JSON (age:=25).
Persistent sessions (cookies/headers) in CLI. http --session=logged-in API.
Do:
--offline: To inspect how the request would look without sending it.Don't:
curl for JSON: Unless you are pasting to a colleague who doesn't have HTTPie. HTTPie is superior for JSON.