Skip to content

Cloud Quickstart

  1. Create an account

    Go to cloud.rawdash.dev and sign up with your GitHub account.

  2. 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>/...
  3. 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.

  4. Trigger your first sync

    Click Sync now on the connector card. The first sync may take up to 60 seconds depending on repository size.

  5. Get your API key

    Go to Settings → API keys and create a key. Copy it — it won’t be shown again.

  6. 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 Authorization header