Apache Superset Chart API

The Chart API from Apache Superset — 10 operation(s) for chart.

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-chart-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 email required.

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

OpenAPI Specification

apache-superset-chart-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Apache Superset REST Annotation Layer Chart 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: Chart
paths:
  /api/v1/chart/:
    get:
      summary: List charts
      responses:
        '200':
          description: OK
      tags:
      - Chart
    post:
      summary: Create chart
      responses:
        '201':
          description: Created
      tags:
      - Chart
    delete:
      summary: Bulk delete charts
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/_info:
    get:
      summary: Chart schema info
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/{id_or_uuid}:
    get:
      summary: Get chart
      parameters:
      - name: id_or_uuid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/{pk}:
    put:
      summary: Update chart
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
    delete:
      summary: Delete chart
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/{pk}/data/:
    get:
      summary: Get chart data
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/data:
    post:
      summary: Run chart data query
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/data/{cache_key}:
    get:
      summary: Fetch cached chart data
      parameters:
      - name: cache_key
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/export/:
    get:
      summary: Export charts
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/import/:
    post:
      summary: Import charts
      responses:
        '200':
          description: OK
      tags:
      - Chart
  /api/v1/chart/{pk}/favorites/:
    post:
      summary: Favorite chart
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
    delete:
      summary: Unfavorite chart
      parameters:
      - name: pk
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Chart
x-generated-from: https://superset.apache.org/developer-docs/api
x-generated-by: claude-crawl-2026-05-08