Cloud Quickstart
-
Create an account
Go to cloud.rawdash.dev and sign up with your GitHub account.
-
Create a workspace
A workspace maps to an organisation or team. Give it a name and choose a slug — this appears in your Cloud API URL:
https://api.rawdash.dev/v1/<your-slug>/... -
Add a connector
Open the Connectors tab and click Add connector. Select GitHub, then authenticate with your GitHub account and choose the repositories to include.
-
Trigger your first sync
Click Sync now on the connector card. The first sync may take up to 60 seconds depending on repository size.
-
Get your API key
Go to Settings → API keys and create a key. Copy it — it won’t be shown again.
-
Query from your app or Claude
const res = await fetch('https://api.rawdash.dev/v1/<your-slug>/dashboards/eng/widgets',{headers: { Authorization: 'Bearer <your-api-key>' },},);Or wire it up via MCP — see MCP Setup and use your Cloud API key as
RAWDASH_API_KEY.
Next steps
- Billing — understand your plan limits
- MCP Setup — query Cloud data from Claude Code / Desktop
- API Reference — the same HTTP API works for Cloud,
just swap the base URL and add your
Authorizationheader