SigSentrySigSentry
Analyses

Analyses

Create diagnoses, ask follow-ups, generate postmortems, and rate accuracy

The analyses endpoints are the core of the API surface. Use them to trigger a diagnosis, fetch the result, ask follow-up questions on an existing diagnosis, or generate a postmortem from one.

Endpoints

Method + pathPurpose
POST /v1/analysesCreate an analysis
GET /v1/analysesList analyses for the project
GET /v1/analyses/{id}Fetch one analysis by id
POST /v1/analyses/{id}/followupAsk a follow-up on a complete analysis
POST /v1/analyses/{id}/feedbackRate an analysis for accuracy
GET /v1/analyses/{id}/similarFind similar past analyses — Pro+
POST /v1/analyses/{id}/postmortemGenerate a postmortem in Markdown
POST /v1/analyses/{id}/postmortem/polishAI-polish a postmortem — Pro+

Result schema

Every analysis returns the same shape, regardless of how it was triggered. See the result-schema deep-dive for field-level guidance, or the create response for the JSON shape.

See also