Apache Superset Dataset API

The Dataset API from Apache Superset — 8 operation(s) for dataset.

Operations 11

GET /api/v1/dataset/ List datasets
POST /api/v1/dataset/ Create dataset
DELETE /api/v1/dataset/ Bulk delete datasets
GET /api/v1/dataset/_info Dataset schema info
GET /api/v1/dataset/{id_or_uuid} Get dataset
PUT /api/v1/dataset/{pk} Update dataset
DELETE /api/v1/dataset/{pk} Delete dataset
PUT /api/v1/dataset/{pk}/refresh Refresh dataset metadata
POST /api/v1/dataset/duplicate Duplicate dataset
GET /api/v1/dataset/export/ Export datasets
POST /api/v1/dataset/import/ Import datasets

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-dataset-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-dataset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Superset REST Annotation Layer Dataset 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: Dataset
paths:
  /api/v1/dataset/:
    get:
      summary: List datasets
      responses:
        '200':
          description: OK
      tags:
      - Dataset
    post:
      summary: Create dataset
      responses:
        '201':
          description: Created
      tags:
      - Dataset
    delete:
      summary: Bulk delete datasets
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/_info:
    get:
      summary: Dataset schema info
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/{id_or_uuid}:
    get:
      summary: Get dataset
      parameters:
      - name: id_or_uuid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/{pk}:
    put:
      summary: Update dataset
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Dataset
    delete:
      summary: Delete dataset
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/{pk}/refresh:
    put:
      summary: Refresh dataset metadata
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/duplicate:
    post:
      summary: Duplicate dataset
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/export/:
    get:
      summary: Export datasets
      responses:
        '200':
          description: OK
      tags:
      - Dataset
  /api/v1/dataset/import/:
    post:
      summary: Import datasets
      responses:
        '200':
          description: OK
      tags:
      - Dataset
x-generated-from: https://superset.apache.org/developer-docs/api
x-generated-by: claude-crawl-2026-05-08