From install to your first answer.

Install Cheep, connect the Namecheap sandbox, and check your first domain. A small start for people, scripts, and AI agents.

Install Cheep

You need Go 1.26.6 or newer. Cheep builds a native executable for macOS, Linux, or Windows. Prebuilt binaries and Homebrew follow the first tagged release.

Install
go install github.com/turushan/cheep/cmd/cheep@latest
cheep version

If your shell cannot find cheep, add Go’s binary directory to your PATH. It is $(go env GOPATH)/bin by default, or the directory set in GOBIN.

Connect the sandbox

Create an account in the Namecheap sandbox, enable API access, and whitelist your public IPv4. Sandbox and production have separate accounts, API keys, and IP allowlists.

Configure
cheep --environment sandbox auth configure sandbox \
  --api-user YOUR_SANDBOX_USER \
  --client-ip YOUR_PUBLIC_IPV4 \
  --default
cheep --profile sandbox auth set-key

The key prompt is hidden. Cheep stores the key in your operating system’s credential manager. Use the authentication guide for production profiles and headless setup.

Your first check

Check domains
cheep doctor
cheep domains check paperkite.dev paperkite.com

doctor verifies API access. The domain check returns a readable table. These example names are illustrative; Namecheap supplies the live availability.

DOMAIN          AVAILABLE  PREMIUM
paperkite.dev   yes        no
paperkite.com   no         no

Everyday commands

TaskCommand
List account domainscheep domains list
Inspect a domaincheep domains info example.com
Read an account pricecheep account pricing com --action register
Export DNScheep dns export example.com --file zone.yaml
Discover API methodscheep api methods
Inspect machine schemacheep schema --json

Keep going