Developer platform · API v1

Build with the FastBI API.

Read the live demo database through a typed, versioned API. Selected integration writes are implemented behind bearer-token authentication.

Public preview access. GET endpoints require no authentication. Writes return 503 until FASTSME_API_TOKEN is configured; enabled clients send Authorization: Bearer <token>.

Resources

Queries

Governed reusable SQL queries.

GET /api/v1/queriesGET /api/v1/queries/{id}

Charts

Visualisations backed by governed queries.

GET /api/v1/chartsGET /api/v1/charts/{id}

Dashboards

Collections of business intelligence visualisations.

GET /api/v1/dashboardsGET /api/v1/dashboards/{id}

Warehouse orders

Synthetic analytical order facts.

GET /api/v1/ordersGET /api/v1/orders/{id}

Quick start

curl "https://fastbi.org/api/v1/queries?limit=20"

python - <<'PY'
import requests
rows = requests.get("https://fastbi.org/api/v1/queries", timeout=20).json()
print(rows["data"])
PY

Runtime OpenAPI: /api/openapi.json · Stable compatibility schema: /swagger.json · Interactive docs: /api/docs