Developer docs

Kaggle integration

Kaggle is a platform for data science and machine learning competitions,…

Updated June 2026 35 actions available

Provider
kaggle
Category
Other
Setup
User-supplied API key
Actions
35 available

Quick start

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

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

Show all 35 actions
  • KAGGLE_DATASET_LIST_FILES
  • KAGGLE_DATASET_STATUS
  • KAGGLE_DATASET_VERSION
  • KAGGLE_DOWNLOAD_COMPETITION_FILE
  • KAGGLE_DOWNLOAD_COMPETITION_LEADERBOARD
  • KAGGLE_DOWNLOAD_DATASET
  • KAGGLE_DOWNLOAD_DATASET_FILE
  • KAGGLE_GENERATE_COMPETITION_SUBMISSION_URL
  • KAGGLE_GET_DATASET_METADATA
  • KAGGLE_GET_MODEL
  • KAGGLE_GET_MODEL_INSTANCE
  • KAGGLE_KERNEL_INIT
  • KAGGLE_KERNEL_OUTPUT
  • KAGGLE_KERNELS_STATUS
  • KAGGLE_LIST_COMPETITION_FILES
  • KAGGLE_LIST_COMPETITIONS
  • KAGGLE_LIST_DATASETS
  • KAGGLE_LIST_KERNEL_OUTPUT_FILES
  • KAGGLE_LIST_KERNELS
  • KAGGLE_LIST_MODEL_INSTANCE_VERSION_FILES
  • KAGGLE_LIST_MODELS
  • KAGGLE_PULL_KERNEL
  • KAGGLE_VIEW_COMPETITION_LEADERBOARD

Build with Kaggle

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