API Reference
Re-audit
Queue a fresh audit for a previously audited domain to measure score changes after improvements.
POST
/api/v1/audits/[slug]/reauditQueue a fresh audit for a previously audited domain. Use after making improvements to measure score changes.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | Required | Domain slug of a previously audited site |
Example
Try it
Response
On success the API queues a new audit and returns 201 Created. Use GET /audits/[slug]/status to poll until the re-audit reaches completed.
201Re-audit queued
If an audit is already running for this domain, returns 200 with the current status instead of queuing a duplicate.
200Audit already in progress
404No existing audit
Only one audit can run per domain at a time. Wait for the current audit to complete before requesting another re-audit.
Re-audits that produce the same score as the previous version update the existing version in place rather than creating a new one. This prevents version bloat from retries.