Skip to main content
This guide walks you through creating an account, generating an API key, and making your first API calls.
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 POST request to /v1/incidents with your API key in the Authorization header.
A successful response returns the created incident:
The 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 GET request:
The response includes your incidents and a pagination cursor:
When nextCursor is a string value, pass it as a query parameter to retrieve the next page of results.

Next steps