API technical entry
The public gateway URL (often https://api.kuunda-cloud.com ) is the base for all HTTP calls: REST API, Auth, Storage, Realtime, and so on. It is not a website: the browser will not render an HTML page there.
Root / : JSON probe
A request to the root returns a small availability JSON, for example {"status":"ok","service":"kuunda-api-gateway"} . Useful for probes and to check that the domain answers.
REST API: /rest/v1/ prefix
Exposed SQL requests go under https://api.kuunda-cloud.com/rest/v1/. Without valid headers (gateway apikey, project key in Authorization: Bearer, X-Project-Ref depending on your config), the browser may show a 401 error: that is expected.
SQL migrations (dashboard)
Controlled DDL/DML on the tenant schema does not go through /rest/v1. Use POST https://app.kuunda-cloud.com/api/projects/{ref8}/migrate/service-role with the service_role (apikey or Bearer) and body { "sql": "…" }. Details: Remote migrations.
Next
- Get anon / service keys from the console (app): project settings.
- REST API reference: /rest/v1/ prefix.