# Verified Workflows — AI Review Platform ## What is Verified Workflows? Verified Workflows is an API-first human-in-the-loop review platform that connects AI outputs with skilled human reviewers for validation, correction, and improvement. Supports text, audio, images, and structured data review with consensus voting, skill gating, and training data export. ## Key Features - **API-first**: REST API for submitting tasks, webhooks for async delivery - **Skill gating**: Route tasks to certified domain experts (medical, legal, audio, translation, text, data) - **Consensus voting**: Multiple reviewers for high-stakes tasks - **Express & Standard tiers**: <1hr or <24hr turnaround - **Training data export**: DPO pair export for model fine-tuning - **Webhook delivery**: Signed payloads with HMAC verification - **Idempotency keys**: Safe retries without duplicates ## Quick Start ```bash curl -X POST https://verifiedworkflows.com/v1/tasks \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"text","priority":"express","title":"Review summary","instructions":"Check for factual accuracy","payload":{"content":"Your AI output here"},"consensus_total":1}' ``` ## API Base URL `https://verifiedworkflows.com` ## Authentication Use Bearer token in Authorization header. API keys prefixed with `hq_live_`. ## Key Endpoints - `POST /v1/tasks` - Create review task - `GET /v1/tasks/{id}` - Get task status - `POST /v1/tasks/{id}/resolve` - Submit review result - `POST /v1/webhooks` - Configure webhook URL - `GET /v1/analytics/dashboard` - Get workspace analytics - `POST /auth/login` - User authentication ## Pricing - Standard: $0.15/task (<24hr turnaround) - Express: $0.25/task (<1hr turnaround, certified reviewers) - Start with 100 free tasks, no credit card required