API reference
The DevAudit API is REST over HTTPS. Authenticate every request with a bearer token from your account settings.
example request
curl https://api.devaudit.org/v1/errors \ -H "Authorization: Bearer $DEVAUDIT_TOKEN"
Endpoints
GET
/v1/reposList repositories watched on your account.GET
/v1/errorsList recent grouped errors across all watched repos.GET
/v1/errors/:idFetch a single error's full autopsy, including cause and suggested fix.POST
/v1/errors/:id/fixApply the AI quick-fix for an error as a commit on a new branch.