Getting Started

Create an account, get credentials, and call the API.

Note: The API URL is not configured. Set the NEXT_PUBLIC_API_URL environment variable to your deployed API base URL (e.g. https://api.example.com).

  1. Register — Use the Builder or Super Admin sign-up to create an account.
  2. Log in — POST <your-api-url>/api/auth/login with email and password to get accessToken and refreshToken.
  3. Tenant — Create or select a tenant; include X-Tenant-Id header (and Authorization: Bearer <token>) for tenant-scoped requests.
  4. API keys — In Builder → API Keys, create a key for server-to-server calls. Use header X-Api-Key: <key> (and X-Tenant-Id).
  5. Create an app — POST <your-api-url>/api/apps with name, slug, template (e.g. ecommerce).

See code examples →