1
Create your account and organization
Go to scaling.cloud and sign up. During onboarding you’ll create an organization — this is the workspace that holds your incidents, schedules, and team members.All API keys and resources are scoped to your organization.
2
Get your API key
In the scaling.cloud dashboard, navigate to Settings → API Access and generate a new API key.Your key will look like this:Copy it now — you won’t be able to see the full key again after leaving the page.
Keep your API key secure. Anyone with this key can create and manage incidents in your organization.
3
Create your first incident
Send a A successful response returns the created incident:The
POST request to /v1/incidents with your API key in the Authorization header.id field is the incident’s unique identifier — save it to reference the incident in later requests.Severity levels: critical, high, medium, lowInitial status: All new incidents start with status investigating.4
Check your incidents
Retrieve the list of incidents for your organization with a The response includes your incidents and a pagination cursor:When
GET request:nextCursor is a string value, pass it as a query parameter to retrieve the next page of results.Next steps
- Authentication — Learn more about API keys and how to handle auth errors.
- API Reference — Explore all available endpoints.