Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hexelstudio.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Hexel provides official SDKs for Python and TypeScript, and a command-line interface.

Install

pip install hexel

Authentication

All clients support two authentication methods. API Key is recommended for development and scripts.
from hexel import Hexel
client = Hexel(api_key="your_api_key")
OAuth Client Credentials is recommended for production services.
client = Hexel(client_id="your_client_id", client_secret="your_client_secret")
Create API keys and OAuth clients in the console under IAM → Service Users.

Resources

Python SDK

Installation and quickstart.

TypeScript SDK

Installation and quickstart.

CLI

Installation and quickstart.