Developer docs

Bigml integration

BigML is a comprehensive machine learning platform that simplifies the creation…

Updated June 2026 45 actions available

Provider
bigml
Category
Other
Setup
User-supplied API key
Actions
45 available

Quick start

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

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

Show all 45 actions
  • BIGML_LIST_BATCH_CENTROIDS
  • BIGML_LIST_BATCH_PREDICTIONS
  • BIGML_LIST_BATCH_PROJECTIONS
  • BIGML_LIST_BATCH_TOPIC_DISTRIBUTIONS
  • BIGML_LIST_CENTROIDS
  • BIGML_LIST_CLUSTERS
  • BIGML_LIST_COMPOSITES
  • BIGML_LIST_CONFIGURATIONS
  • BIGML_LIST_CORRELATIONS
  • BIGML_LIST_DATASETS
  • BIGML_LIST_DEEPNETS
  • BIGML_LIST_ENSEMBLES
  • BIGML_LIST_EVALUATIONS
  • BIGML_LIST_EXECUTIONS
  • BIGML_LIST_FORECASTS
  • BIGML_LIST_FUSIONS
  • BIGML_LIST_LIBRARIES
  • BIGML_LIST_LINEAR_REGRESSIONS
  • BIGML_LIST_LOGISTIC_REGRESSIONS
  • BIGML_LIST_MODELS
  • BIGML_LIST_OPTIMLS
  • BIGML_LIST_PCAS
  • BIGML_LIST_PREDICTIONS
  • BIGML_LIST_PROJECTIONS
  • BIGML_LIST_PROJECTS
  • BIGML_LIST_SAMPLES
  • BIGML_LIST_SCRIPTS
  • BIGML_LIST_SOURCES
  • BIGML_LIST_STATISTICAL_TESTS
  • BIGML_LIST_TIMESERIES
  • BIGML_LIST_TOPIC_DISTRIBUTIONS
  • BIGML_LIST_TOPIC_MODELS
  • BIGML_UPDATE_SOURCE

Build with Bigml

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