AI Compliance Trail
Forge Audit Tool
Tamper-proof audit logging for every AI decision.
All ToolsSubscribe Now
Forge Audit
AI Compliance Trail
Forge Audit creates an immutable, hash-verified record of every AI interaction. Each entry gets a SHA-256 hash with optional IPFS anchoring for tamper-proof regulatory compliance. Search, export, and verify audit entries through a simple API.
Features
- SHA-256 hash per audit entry
- IPFS anchoring (async)
- Integrity verification API
- Full-text search
- JSON/CSV export
- Date range filtering
- Metadata attachment
- Tamper-proof chain
API Endpoints
POST
/v1/tools/audit/logLog an AI decision
GET
/v1/tools/audit/verify/:hashVerify entry integrity
GET
/v1/tools/audit/exportExport audit logs
GET
/v1/tools/audit/searchSearch entries
GET
/v1/tools/audit/healthHealth check
Use Cases
SOC 2 compliance for AI-powered applications
HIPAA audit trail for healthcare AI
EU AI Act transparency logging
Internal AI governance and accountability
Quick Start
// Log an AI decision
const res = await fetch('https://api.optima-forge.com/v1/tools/audit/log', {
method: 'POST',
headers: {
'Authorization': 'Bearer ftk_audit_your_key_here',
'Content-Type': 'application/json',
},
body: JSON.stringify({
prompt: 'Classify this support ticket',
response: 'Category: billing, Priority: high',
model: 'claude-sonnet-4-20250514',
metadata: { ticketId: 'T-1234', userId: 'u_567' },
}),
});
const { id, hash, stored, timestamp } = await res.json();
// Later — verify integrity
const verify = await fetch(
`https://api.optima-forge.com/v1/tools/audit/verify/${hash}`,
{ headers: { 'Authorization': 'Bearer ftk_audit_your_key_here' } }
);
const { verified, integrity } = await verify.json();
// verified: true, integrity: 'intact'Ready to start?
Get your API key in seconds. $25/month, cancel anytime.