Skip to main content
GET
/
api
/
analytics
/
datasets
List all Superset datasets
curl --request GET \
  --url https://api.example.com/api/analytics/datasets \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "catalog": "<string>",
    "columns": [],
    "datasource_name": "<string>",
    "name": "<string>",
    "schema": "<string>",
    "sql": "<string>",
    "table_name": "<string>",
    "type": "<string>"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

Successful Response

id
integer
required
catalog
string | null
columns
SupersetDatasetColumn · object[]
datasource_name
string | null
name
string | null
schema
string | null
sql
string | null
table_name
string | null
type
string | null