You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An interactive REST API explorer for Databricks β covering both Workspace and Account-level APIs. Built as a Databricks App with dual-mode authentication: runs locally via Databricks CLI SSO and in production as a Databricks App using On-Behalf-Of (OBO) authentication.
Screenshot
Features
API Coverage
32 API categories with 76 endpoints across both Workspace and Account REST API surfaces
Scope switcher in the sidebar toggles between Workspace and Account API views
Workspace APIs (16 categories, 45 endpoints)
Category
Endpoints
Clusters
List, Get, Node Types, Spark Versions, Events
Jobs
List Jobs, Get Job, List Runs, Get Run
Workspace
List Objects, Get Status, Search
DBFS
List Files, Get File Status
SQL Warehouses
List, Get, List Saved Queries
Unity Catalog
List Catalogs, Schemas, Tables, Volumes, Get Table, Get Metastore
MLflow
Search Experiments, Get Experiment, Search Runs, Registered Models
Model Serving
List Endpoints, Get Endpoint
Pipelines (DLT)
List, Get, List Events
Secrets
List Scopes, List Secrets
Identity (SCIM)
Current User, List Users, List Groups, List Service Principals
Tokens
List Tokens
Instance Pools
List Instance Pools
Cluster Policies
List Cluster Policies
Repos
List Repos
Permissions
Get Cluster, Job, and Warehouse Permissions
Account APIs (16 categories, 31 endpoints)
Category
Endpoints
Account Users
List Users, Get User
Account Groups
List Groups, Get Group
Service Principals
List Service Principals, Get Service Principal
Workspaces
List Workspaces, Get Workspace
Credentials
List Credential Configs, Get Credential Config
Storage
List Storage Configs, Get Storage Config
Networks
List Network Configs, Get Network Config
Private Access
List Private Access Settings, Get Private Access Settings
VPC Endpoints
List VPC Endpoints, Get VPC Endpoint
Encryption Keys
List Encryption Key Configs, Get Encryption Key Config
Log Delivery
List Log Delivery Configs, Get Log Delivery Config
Budgets
List Budgets, Get Budget
Usage Download
Download Usage (CSV)
Account Metastores
List Metastores, Get Metastore, List Metastore Assignments
Account Access Control
Get Rule Set
Account Settings
Get Personal Compute Setting, List IP Access Lists
Authentication
Local mode β authenticates via the Databricks CLI (~/.databrickscfg). Supports all CLI auth flows: OAuth/SSO (browser-based), PAT, Azure Service Principal, Azure Managed Identity, OAuth M2M.
Databricks App mode β auto-detected at runtime. Uses On-Behalf-Of (OBO) authentication: the user's access token is forwarded via the x-forwarded-access-token HTTP header, so every API call runs as the logged-in user. No token configuration required.
Custom URL / PAT β optionally specify any workspace URL and Personal Access Token directly in the UI, bypassing the CLI entirely.
Account API auth β account-scope endpoints automatically derive the accounts console URL from the workspace host and obtain an account-level token.
Connection Management
User identity panel β click the username chip in the top bar to open a slide-down panel showing:
Display name, username, active status
Auth type (OBO, OAuth/SSO, PAT, Azure SP, etc.)
Workspace host and account ID
User ID and primary email
Group memberships (up to 20, with overflow count)
CLI profile switcher β all profiles from ~/.databrickscfg are listed and refreshed on every panel open. Switch profiles without restarting the app.
Re-authenticate β triggers databricks auth login for SSO re-auth directly from the UI.
Live connection validation β the Connect button tests the connection before saving it to state.
Request Builder
Parameter forms β each endpoint renders a type-aware form with required/optional badges and inline descriptions
Path parameter interpolation β path parameters (e.g. {cluster_id}) are extracted from the URL and shown as dedicated fields
JSON body editor β POST endpoints show a pre-populated JSON textarea with the correct request schema
Real-time search β filter endpoints across all categories by name, path, method, or category
Configurable timeout β per-request timeout control with a spinner input next to the Execute button (defaults vary by endpoint, e.g. 120 s for Usage Download)
Auto-fill account ID β account-scope endpoints automatically populate the account_id field from the current CLI profile
Response Viewer
Collapsible JSON tree β interactive tree viewer rendered in an iframe with expand/collapse toggles, inline syntax highlighting, and compact previews for collapsed nodes
Inline ID links β list API responses render clickable ID chips on matching fields; clicking one fires the corresponding Get API and pre-fills the parameter form
Side panel with chip list β list responses show a scrollable side panel of result chips with labels, allowing quick drill-down into individual items
Action buttons on chips β some list endpoints expose secondary actions (e.g. "List workspace assignments" on metastores) directly on each chip
Response metadata bar β HTTP status code (color-coded), latency in ms, item count for list responses, full request URL
CSV viewer β endpoints that return CSV data (e.g. Usage Download) are rendered as a scrollable HTML table
curl command β every executed request generates a ready-to-copy curl command displayed below the Execute button, with a one-click copy button
Pagination
Automatic pagination β when a response contains a next_page_token, the app automatically fetches subsequent pages and merges them into a single result
"Load All" button β for APIs with has_more-style pagination, a "Load All" button in the side panel fetches all remaining pages in a background thread with live progress updates
Abort controls β both automatic pagination and Load All can be cancelled mid-flight; Load All auto-cancels when switching to a different endpoint
Resizable Side Panel
Drag-to-resize β the side panel has a left-edge resize handle; drag to adjust width between 20% and 80% of the viewport
Persistent width β panel width is saved to localStorage and restored across page reloads
UI & UX
Glassmorphism dark theme β custom CSS with CSS variables, neon accent colors, backdrop-filter blur effects
CYBORG Bootstrap theme via dash-bootstrap-components
Scope switcher β toggle between Workspace and Account API catalogs in the sidebar
Mode badge in the top bar shows whether running as Local Mode or Databricks App
Workspace host display in the top bar with a clickable link to the workspace
Auto-incrementing build version β version.py bumps a counter on every app start, displayed as v<N> in the topbar
Accordion sidebar with category icons, per-category endpoint counts, and method color badges (GET/POST/PUT/DELETE/PATCH)
Active endpoint highlighting β selected endpoint button is highlighted in the sidebar
Debug bar patches β MutationObserver removes the Plotly Cloud button and injects workspace URL links into the Dash debug bar