| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/analyze | Submit a document for forensic analysis. Returns a job id. |
| GET | /v1/reports/:id | Fetch a sealed report with full Document Trust Score. |
| POST | /v1/signatures/verify | Verify digital signatures embedded in a PDF or Office document. |
| POST | /v1/compare | Compare two documents and return a redline diff. |
| GET | /v1/usage | Workspace usage and remaining credits for the billing period. |
Example request
curl -X POST https://api.zerovault.io/v1/analyze \ -H "Authorization: Bearer $ZEROVAULT_API_KEY" \ -F "file=@evidence.pdf" \ -F "ocr=true"