@honeyhive/cli) is a single-binary client that maps one-to-one to the HoneyHive REST API. Use it to script datasets, runs, and projects from your terminal, CI, shell pipelines, or AI coding agents like Cursor and Claude Code.
The CLI is organized into namespaces: honeyhive datasets, honeyhive datapoints, honeyhive experiments, etc. JSON-shaped flags accept JSON literals; scalar flags take their natural shell type. Run honeyhive --help to discover namespaces, honeyhive <namespace> --help to discover commands, or honeyhive <namespace> <command> --help to discover flags.
Installation
macOS (Homebrew)
Linux/WSL (install script)
The install script downloads the linux-x64 or linux-arm64 binary from the corresponding GitHub Release, verifies its SHA256, and installs it to/usr/local/bin (falling back to ~/.local/bin if /usr/local/bin isn’t writable). To install to a different directory, set the INSTALL_DIR environment variable.
brew tap honeyhiveai/tap then brew install honeyhive) work on Linux as well.
Authorization
The HoneyHive API authenticates requests using an API key sent as a Bearer token in theAuthorization header. There are two ways to provide it.
Environment variable (recommended)
Set theHH_API_KEY environment variable. The CLI reads it automatically when no --api-key flag is provided:
—api-key flag
Pass the key directly on the command line.Never hard-code the key or commit it to source control. Always read it from a secret store or environment variable.
Data plane URL
By default the CLI talks tohttps://api.dp1.us.honeyhive.ai. To point at a self-hosted deployment or a staging environment, set the HH_DATA_PLANE_URL environment variable or pass --data-plane-url:
Verbose logging
Pass--verbose (or set HH_VERBOSE=true) to log the resolved data plane URL, a masked API key, and the CLI version on startup. Useful when debugging “is this hitting prod or staging?” or “did the right HH_API_KEY get picked up?”.
hh_, hh_org_, hh_ws_, hh_cp_, hh_dp_) and the last 4 characters; anything else renders as 8 fixed-width asterisks.
Schema introspection
Every command that takes arguments supports two read-only flags for tooling and AI agents:--show-file-schema: print the JSON Schema for the full request object (the same shape--filenameaccepts). See Using a file for upload arguments for the file format.--show-argument-schema <flag-name>: print the JSON Schema for a single argument’s value (e.g.,honeyhive sessions create --show-argument-schema user-properties). Pass the kebab flag name without the leading--.
Example: Creating and deleting a dataset
Given adatapoint.json file:
Using a file for upload arguments
Instead of passing data via command line arguments, you can read from a file using the--filename/-f flag:
snake_case or camelCase, not --kebab-case like the CLI flags.
Related
Config as Code
Define evaluators and datasets in your repo and apply them with
--filename.Use with Coding Agents
Combine the CLI with HoneyHive Skills and Docs MCP.
CLI Reference
Browse the full auto-generated command reference.
TypeScript API SDK
The programmatic counterpart to the CLI for TypeScript/Node.js.

