Built for developers who value speed

API testing
redefined

The CLI tool that eliminates complexity. Built in Rust for deadly efficiency and unmatched performance.

terminal
$ terzi https://api.github.com/users/octocat
🟢 GET 200 (89ms) 1.2KB
{
"login": "octocat",
"name": "The Octocat",
"company": "GitHub"
}
$ terzi --save github-user
💾 Saved as 'github-user'
$

Built for speed

Every feature designed for efficiency and precision

01

Lightning Fast

Built in Rust for zero-cost abstractions and memory safety. Execute thousands of requests with minimal overhead.

02

Smart Collections

Save, organize, and replay requests effortlessly. Build libraries that scale with your workflow and team.

03

Beautiful Output

Syntax highlighting, intelligent formatting, and color-coded responses make debugging a breeze.

04

Secure by Default

Automatic credential masking, secure storage, and safe authentication handling protect your secrets.

05

Interactive Mode

Guided workflows for beginners, powerful automation for experts. Switch between modes seamlessly.

See it in action

From simple requests to complex workflows

$ terzi https://api.github.com/users/octocat
🟢 200 (89ms) 1.2KB
$ terzi -X POST -j '{"name":"John"}' api.com/users
🟢 201 (156ms)
$ terzi -A "bearer:token" api.com/protected
🟢 200 (234ms)
$ terzi -A "basic:user:pass" api.com/login
🟢 200 (123ms)
$ terzi --save user-profile api.com/me
💾 Saved as 'user-profile'
$ terzi --load user-profile
🟢 200 (67ms)

Get started

Choose your installation method

🦀 Build from Source
Recommended for latest features
git clone https://github.com/simplysabir/terzi cd terzi cargo build --release
🐳 Docker
Run anywhere, no dependencies
docker build -t terzi . docker run -it terzi
📦 Package Managers
Available with cargo
cargo install terzi