Contents
Guided setup
Integrations
Events API
Self hosting
Create project and API key
After signup, onboarding asks you to create your first project. You also get a project API key.
A good setup for most teams:
- One project for production.
- One project for staging.
- Store API keys in environment variables.
- Invite teammates only to projects they need.
Initialize the SDK in your backend:
import Operational from "@operational.co/sdk";
const ops = new Operational(process.env.OPERATIONAL_API_KEY, {
// Optional for self-hosted or custom domains
// baseUrl: "https://api.your-domain.com",
});