Altimate AI AZURE_DATABRICKS_CONNECTIONS API

The AZURE_DATABRICKS_CONNECTIONS API from Altimate AI — 2 operation(s) for azure_databricks_connections.

Operations 2

POST /azure-databricks-connections/ Save Azure Databricks Connection #
POST /azure-databricks-connections/private-link/ Save Azure Databricks Private Link Connection #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/altimate-ai-azure-databricks-connections-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

altimate-ai-azure-databricks-connections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS AZURE DATABRICKS CONNECTIONS API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: AZURE_DATABRICKS_CONNECTIONS
paths:
  /azure-databricks-connections/:
    post:
      tags:
      - AZURE_DATABRICKS_CONNECTIONS
      summary: Save Azure Databricks Connection
      description: Insert a new Azure Databricks connection entry into global_config.
      operationId: save_azure_databricks_connection_azure_databricks_connections__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AzureDatabricksConnectionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SavedConnectionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /azure-databricks-connections/private-link/:
    post:
      tags:
      - AZURE_DATABRICKS_CONNECTIONS
      summary: Save Azure Databricks Private Link Connection
      description: Insert a new Azure Databricks Private Link entry into global_config.
      operationId: save_azure_databricks_private_link_connection_azure_databricks_connections_private_link__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AzureDatabricksPrivateLinkConnectionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SavedConnectionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AzureDatabricksConnectionRequest:
      properties:
        name:
          type: string
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
          default: ''
        azure_tenant_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Azure Tenant Id
          default: ''
        databricks_account_id:
          type: string
          title: Databricks Account Id
        workspace_url:
          type: string
          title: Workspace Url
        sp_client_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Sp Client Id
          default: ''
        sp_secret:
          anyOf:
          - type: string
          - type: 'null'
          title: Sp Secret
          default: ''
        sql_warehouse_id:
          type: string
          title: Sql Warehouse Id
        system_catalog_scope:
          type: string
          enum:
          - all
          - specific
          title: System Catalog Scope
        system_catalog_schemas:
          anyOf:
          - type: string
          - type: 'null'
          title: System Catalog Schemas
          default: ''
      type: object
      required:
      - name
      - databricks_account_id
      - workspace_url
      - sql_warehouse_id
      - system_catalog_scope
      title: AzureDatabricksConnectionRequest
    AzureDatabricksPrivateLinkConnectionRequest:
      properties:
        name:
          type: string
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
          default: ''
        workspace_resource_id:
          type: string
          title: Workspace Resource Id
        workspace_url:
          type: string
          title: Workspace Url
        storage_account_resource_id:
          type: string
          title: Storage Account Resource Id
        storage_account_fqdn:
          type: string
          title: Storage Account Fqdn
        azure_region:
          type: string
          title: Azure Region
      type: object
      required:
      - name
      - workspace_resource_id
      - workspace_url
      - storage_account_resource_id
      - storage_account_fqdn
      - azure_region
      title: AzureDatabricksPrivateLinkConnectionRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    SavedConnectionResponse:
      properties:
        id:
          type: integer
          title: Id
        config_type:
          type: string
          title: Config Type
        saved_at:
          type: string
          title: Saved At
          description: ISO timestamp when the row was created
      type: object
      required:
      - id
      - config_type
      - saved_at
      title: SavedConnectionResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer