Getting Started
OVWI provides verifiable workflow infrastructure with execution tracking, audit records and proof generation.
Authentication
Authorization: Bearer YOUR_API_KEY
Execute Workflow
await fetch("/api/workflow", {
method: "POST",
headers: {
Authorization: "Bearer API_KEY"
},
body: JSON.stringify({
workflow: "payment_process",
amount: 100
})
});Execution Logs
→ Request received
→ Verifying signature
→ Executing workflow
→ Recording logs
✅ Verified
Audit Records
Every execution creates a permanent audit record with timestamps and verification metadata.
Verification Proof
{
"workflow_id": "wf_8f3d2a",
"status": "VERIFIED",
"checksum": "sha256-...",
"signature": "0x7f83ab...",
"immutable": true
}API Reference
Detailed API endpoints, SDK usage guidelines, and parameter specifications will be detailed here.