Starburst Galaxy API Documentation
This is the complete API documentation for connecting to the Starburst Galaxy API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet Starburst Galaxy: Starburst Galaxy is a fully managed data lakehouse and analytics platform built on Trino. This wrapper exposes the Starburst Galaxy Public API for clusters, users, roles, catalogs, tags, service accounts, data products, and data quality summaries. Keep reading to get started.
Quickstart
Before you run your first Starburst Galaxy request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one Starburst Galaxy connection — create or choose one in Connections. Note its
connectionId.
Every Starburst Galaxy action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/starburstGalaxy/latest/actions/{actionSlug}You need a MindCloud API Key and a Starburst Galaxy connection. Then call an action such as List clusters:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/starburstGalaxy/latest/actions/list-clusters" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authenticate with a MindCloud API Key plus a connectionId for your Starburst Galaxy account. See Starburst Galaxy API Authentication for the full flow and how to get your connection credentials.
Starburst Galaxy actions
All 40 published actions for this Starburst Galaxy version. Each page documents the endpoint, arguments, and response controls.
- GETGet BigQuery catalog
- GETGet Cassandra catalog
- GETGet cluster
- GETGet data product
- GETGet data quality summary
- GETGet GCS catalog
- GETGet MongoDB catalog
- GETGet MySQL catalog
- GETGet OpenSearch catalog
- GETGet PostgreSQL catalog
- GETGet Redshift catalog
- GETGet role
- GETGet S3 catalog
- GETGet schema discovery
- GETGet service account
- GETGet Snowflake catalog
- GETGet SQL Server catalog
- GETGet tag
- GETGet user
- GETList BigQuery catalogs
- GETList Cassandra catalogs
- GETList catalog schema discoveries
- GETList catalogs
- GETList clusters
- GETList data products
- GETList GCS catalogs
- GETList MongoDB catalogs
- GETList MySQL catalogs
- GETList OpenSearch catalogs
- GETList PostgreSQL catalogs
- GETList Redshift catalogs
- GETList role grants
- GETList role privileges
- GETList roles
- GETList S3 catalogs
- GETList service accounts
- GETList Snowflake catalogs
- GETList SQL Server catalogs
- GETList tags
- GETList users
Related apps
More Business Intelligence apps on the Universal API, behind the same REST shape. Or browse all apps.