Skip to main content
Authenticate with an API key for servers and CI, or with browser login for local tools:
API keys are created under Account settings → Security & API on Pro and above, and are shown only once.

Quickstart

The synchronous HeyBee client exposes the same operations through resource namespaces, for example client.evaluations.create(spec) and client.voting_links.create(...).

Good to know

  • Safe retries: the client retries only reads and idempotent writes, so a flaky connection never duplicates an evaluation or a purchase. Pass idempotency_key to make any write safely retryable.
  • Errors: every error is typed and carries the HTTP status, an error code, and a request ID you can hand to support.
  • Full API surface: import OpenAPIClient (or AnonymousOpenAPIClient for public endpoints) for direct access to every operation in the API reference, generated from the same OpenAPI document.