Quickstart
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_keyto 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(orAnonymousOpenAPIClientfor public endpoints) for direct access to every operation in the API reference, generated from the same OpenAPI document.

