Skip to main content
Hexel Studio provides official SDKs to make integration easy.

Available SDKs

SDKStatusPackage
PythonAvailablehx-sdk
TypeScript/Node.jsComing soon@hexelstudio/sdk
GoComing soongithub.com/hexelstudio/go-sdk

Python SDK

The Python SDK is our primary SDK with full feature support.
pip install hx-sdk
from hx import Client

client = Client()  # Reads HX_API_KEY from environment

# Org, workspace, and environment are extracted from your API key
print(client.org_id)
print(client.workspace_id)
print(client.environment_id)
Get started with Python SDK →

Direct API Access

If an SDK isn’t available for your language, you can use the REST API directly:
curl -X POST "https://api.hexelstudio.com/runtime/v1/knowledge-stores/{store_id}/search" \
  -H "Authorization: Bearer $HX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "search query", "top_k": 5}'
View API Reference →