Developer docs

Honeyhive integration

HoneyHive is a modern AI observability and evaluation platform that enables…

Updated June 2026 42 actions available

Provider
honeyhive
Category
Other
Setup
User-supplied API key
Actions
42 available

Quick start

Call Honeyhive from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Honeyhive'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(
  "HONEYHIVE_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 Honeyhive 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

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

Show all 42 actions
  • HONEYHIVE_CREATE_TOOL
  • HONEYHIVE_DELETE_DATAPOINT
  • HONEYHIVE_DELETE_DATASET
  • HONEYHIVE_END_EVALUATION_RUN
  • HONEYHIVE_GET_CONFIGURATIONS
  • HONEYHIVE_GET_DATASETS
  • HONEYHIVE_GET_EVENTS
  • HONEYHIVE_GET_EVENTS_BY_SESSION_ID
  • HONEYHIVE_GET_EVENTS_CHART
  • HONEYHIVE_GET_METRICS
  • HONEYHIVE_GET_PROJECTS
  • HONEYHIVE_GET_RUN
  • HONEYHIVE_GET_RUN_METRICS
  • HONEYHIVE_GET_RUNS
  • HONEYHIVE_GET_RUNS_SCHEMA
  • HONEYHIVE_GET_SESSION
  • HONEYHIVE_LIST_TOOLS
  • HONEYHIVE_RETRIEVE_DATAPOINT
  • HONEYHIVE_RETRIEVE_DATAPOINTS
  • HONEYHIVE_RETRIEVE_EVENTS
  • HONEYHIVE_RETRIEVE_EXPERIMENT_RESULT
  • HONEYHIVE_START_EVALUATION_RUN
  • HONEYHIVE_START_SESSION
  • HONEYHIVE_UPDATE_CONFIGURATION
  • HONEYHIVE_UPDATE_DATAPOINT
  • HONEYHIVE_UPDATE_DATASET
  • HONEYHIVE_UPDATE_EVENT
  • HONEYHIVE_UPDATE_METRIC
  • HONEYHIVE_UPDATE_PROJECT
  • HONEYHIVE_UPDATE_TOOL

Build with Honeyhive

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