Stazus docs
Stazus docs

Introduction

Stazus documentationGet startedConcepts

Planned features

Feature availabilityStatus pages

Monitoring

MonitorsChecks and resultsLatency alertingMaintenance windows

Incident response

IncidentsNotificationsTeams and access

Developer API

Developer APIAuthenticationProjectsEndpointsAnalyticsIncidentsErrors and limitsMigrate from v1

Account and help

Account and security

Help

Support

Updates

Changelog
Changelog launchedDocumentation UpdatesDeveloper API v2Scope-aware maintenance windows
Developer API

Developer API

Read monitoring data and manage incidents from your own systems.

The Developer API uses JSON over HTTPS. Version 2 is available at this base URL:

https://siftr-backend.jdqc.dev/api/public/v2

A developer token selects one team. Do not include a team ID in an API URL.

Quick start

  1. Open API in Stazus.
  2. Select Create token.
  3. Select only the scopes that your integration needs.
  4. Store the token secret in a secret manager.
  5. Send the secret in a bearer authorization header.
curl \
  -H "Authorization: Bearer $SIFTR_DEVELOPER_TOKEN" \
  "https://siftr-backend.jdqc.dev/api/public/v2/projects?limit=20"

The API returns one resource inside data:

{
  "data": {
    "id": 12,
    "team_id": 7,
    "name": "Customer API",
    "description": "Customer-facing services",
    "created_at": "2026-08-23T08:00:00Z",
    "updated_at": "2026-08-23T08:00:00Z"
  }
}

List responses also contain pagination:

{
  "data": [],
  "pagination": {
    "next_cursor": null,
    "has_more": false
  }
}

API sections

Authentication

Create tokens and select scopes.

Projects

List projects and their endpoints.

Endpoints

Read endpoint configuration, checks, and alert state.

Analytics

Query team, project, and endpoint performance.

Incidents

Read, create, and update incidents.

Errors and limits

Handle errors, pagination, and rate limits.

OpenAPI

Download the OpenAPI 3.1 document. This endpoint does not require authentication.

Last updated on

Teams and access

Manage teams, members, invitations, roles, and alert subscriptions.

Authentication

Create a developer token and select the correct scopes.

On this page

Quick startAPI sectionsOpenAPI