Connect to AI
Data Platform Bearer Token

Databricks REST API

Unified analytics platform for big data and AI workloads

Databricks is a unified data analytics platform built on Apache Spark that enables data engineering, collaborative data science, and machine learning at scale. The REST API provides programmatic access to workspaces, clusters, jobs, notebooks, and Delta Lake operations, allowing developers to automate data pipelines, manage infrastructure, and integrate ML workflows into existing applications.

Base URL https://.cloud.databricks.com/api/2.0

API Endpoints

MethodEndpointDescription
GET/clusters/listList all clusters in the workspace
POST/clusters/createCreate a new Spark cluster with specified configuration
POST/clusters/startStart a terminated cluster by cluster ID
POST/clusters/deleteTerminate and delete a cluster permanently
GET/jobs/listList all jobs configured in the workspace
POST/jobs/createCreate a new job with tasks, schedule, and cluster configuration
POST/jobs/run-nowTrigger an immediate run of an existing job
GET/jobs/runs/getGet details and status of a specific job run
GET/workspace/listList workspace objects like notebooks, directories, and libraries
POST/workspace/importImport a notebook or directory into the workspace
POST/workspace/exportExport a notebook in specified format (SOURCE, HTML, DBC)
GET/dbfs/listList files and directories in Databricks File System
POST/dbfs/putUpload a file to DBFS with specified path
POST/sql/statementsExecute SQL queries on SQL warehouses and retrieve results
GET/unity-catalog/schemasList schemas in Unity Catalog metastore

Code Examples

curl -X GET 'https://your-instance.cloud.databricks.com/api/2.0/clusters/list' \
  -H 'Authorization: Bearer dapi1234567890abcdef' \
  -H 'Content-Type: application/json'

Use Databricks from Claude / Cursor / ChatGPT

Get a hosted MCP endpoint for Databricks. Paste your Databricks API key, copy back one URL, drop it into Claude Desktop, Cursor, or any AI client that supports remote MCP. Your AI calls Databricks directly with your credentials — no local install, works on mobile.

execute_databricks_query Execute SQL queries on Databricks SQL warehouses and return structured results for data analysis
manage_databricks_cluster Create, start, stop, or configure Spark clusters for running data workloads
run_databricks_job Trigger and monitor job executions for automated data pipelines and ML workflows
access_delta_tables Read from and write to Delta Lake tables with schema evolution and time travel capabilities
manage_workspace_notebooks Import, export, and execute notebooks programmatically for collaborative data science

Connect in 60 seconds

Paste your Databricks key → get an MCP URL → paste into Claude/Cursor. Hosted by IOX, encrypted at rest.

Connect Databricks to your AI →

Related APIs