Apache Superset Database API

The Database API from Apache Superset — 8 operation(s) for database.

Operations 11

GET /api/v1/database/ List databases
POST /api/v1/database/ Create database
GET /api/v1/database/{pk} Get database
PUT /api/v1/database/{pk} Update database
DELETE /api/v1/database/{pk} Delete database
GET /api/v1/database/{pk}/schemas/ List database schemas
GET /api/v1/database/{pk}/tables/ List database tables
POST /api/v1/database/test_connection/ Test database connection
GET /api/v1/database/available/ Available database engines
POST /api/v1/database/import/ Import databases
GET /api/v1/database/export/ Export databases

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/apache-superset-database-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

apache-superset-database-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Superset REST Annotation Layer Database API
  version: '1.0'
  description: Minimal OpenAPI for the Apache Superset REST API covering authentication, dashboards, charts, datasets, databases, SQL Lab, queries, tags, themes, annotations, security (users/roles/permissions), reports, and assets.
servers:
- url: http://localhost:8088
  description: Superset
tags:
- name: Database
paths:
  /api/v1/database/:
    get:
      summary: List databases
      responses:
        '200':
          description: OK
      tags:
      - Database
    post:
      summary: Create database
      responses:
        '201':
          description: Created
      tags:
      - Database
  /api/v1/database/{pk}:
    get:
      summary: Get database
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Database
    put:
      summary: Update database
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Database
    delete:
      summary: Delete database
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/{pk}/schemas/:
    get:
      summary: List database schemas
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/{pk}/tables/:
    get:
      summary: List database tables
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/test_connection/:
    post:
      summary: Test database connection
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/available/:
    get:
      summary: Available database engines
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/import/:
    post:
      summary: Import databases
      responses:
        '200':
          description: OK
      tags:
      - Database
  /api/v1/database/export/:
    get:
      summary: Export databases
      responses:
        '200':
          description: OK
      tags:
      - Database
x-generated-from: https://superset.apache.org/developer-docs/api
x-generated-by: claude-crawl-2026-05-08