Developer docs

Hex integration

Hex is a collaborative data workspace that combines SQL, Python, and R…

Updated June 2026 31 actions available

Provider
hex
Category
Analytics
Setup
User-supplied API key
Actions
31 available

Quick start

Call Hex from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Hex's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "HEX_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Hex API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

31 actions exposed via the Hex integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 31 actions
  • HEX_EDIT_PROJECT_SHARING_ORG_AND_PUBLIC
  • HEX_EDIT_PROJECT_SHARING_USERS
  • HEX_GET_CELL
  • HEX_GET_COLLECTION
  • HEX_GET_GROUP
  • HEX_GET_PROJECT
  • HEX_GET_PROJECT_RUNS
  • HEX_GET_RUN_STATUS
  • HEX_LIST_CELLS
  • HEX_LIST_COLLECTIONS
  • HEX_LIST_DATA_CONNECTIONS
  • HEX_LIST_GROUPS
  • HEX_LIST_PROJECTS
  • HEX_LIST_USERS
  • HEX_PUBLISH_GUIDE_DRAFTS
  • HEX_RUN_PROJECT
  • HEX_UPDATE_CELL
  • HEX_UPDATE_PROJECT
  • HEX_UPSERT_GUIDE_DRAFT

Build with Hex

Open OverSkill, describe what you want to build, and reference Hex in your prompt — the AI will wire up the integration automatically.