Posting is a terminal-based HTTP client that provides a modern alternative to desktop API testing tools like Postman and Insomnia. As a text user interface application, it runs over SSH and supports keyboard-driven workflows, making it suitable for developers who spend significant time in the terminal.
The tool solves the problem of testing and debugging HTTP APIs without leaving the command line. It stores requests locally in simple YAML files, which makes them easy to read, version control, and share. The application includes features like environment variables, autocompletion, syntax highlighting powered by tree-sitter, Vim key bindings, and the ability to run Python code before and after requests. Users can import requests from curl commands, Postman exports, and OpenAPI specifications, and export requests back as curl commands for sharing or scripting.
Posting suits developers who prefer terminal-based workflows and want to keep API requests in version-controlled files rather than proprietary databases. It is particularly valuable for teams using SSH access to remote systems, where a graphical client would be impractical. The tool's reliance on YAML files and local storage makes it a good fit for projects that prioritize portability and integration with existing development tools. Installation is available through uv or pipx on macOS, Linux, and Windows, though Homebrew and NixOS are not officially supported.
The project shows active development with a welcoming contribution policy documented in its guidelines. The codebase is built on Textual, a Python framework for terminal user interfaces, and the maintainers actively maintain documentation including a website with a user guide and roadmap.