Trigger the audit synthesis pipeline
Runs Audity’s full audit synthesis for the project: downloads documents, extracts text, runs the map-reduce AI synthesis pipeline, saves the resulting audit_analysis row, and may queue downstream framework jobs.
This is a synchronous, long-running call, and most clients should avoid it. Typical duration is around 10–15 minutes (a multi-stage pipeline: document/interview extraction, web research, AI synthesis, opportunity ranking, framework rendering), not the 60–300 seconds this description previously claimed. A request this long risks hitting platform-level gateway timeouts with no indication of whether the work actually completed server-side. Use POST /api/agent/projects/{id}/audit-analysis/async and poll GET /api/agent/jobs/{jobId} instead, for any client with a request timeout under several minutes, including essentially all agent integrations.
Cost: consumes AI compute credits (separate from the 1,000-credit project creation cost). Plan required: an audit-capable write plan.
Authorizations
A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.
Path Parameters
The project's UUID.

