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/v2A developer token selects one team. Do not include a team ID in an API URL.
Quick start
- Open API in Stazus.
- Select Create token.
- Select only the scopes that your integration needs.
- Store the token secret in a secret manager.
- 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