Skip to main content
Humancheck Platform is a fully managed cloud service that provides human-in-the-loop capabilities for your AI agents. Get started in minutes without any infrastructure setup.

Base URL

All API requests use:
https://api.humancheck.dev

Features

  • Managed Infrastructure: No setup required, runs in the cloud
  • Production-Ready: Scalable, secure, and reliable
  • Automatic Updates: Always running the latest version
  • API Key Authentication: Secure API access with keys
  • Multi-tenancy: Built-in support for organizations and teams
  • Real-time Dashboard: Cloud-hosted dashboard at https://dashboard.humancheck.dev
  • Slack Notifications: Built-in Slack connector for notifications
  • 99.9% Uptime SLA: Enterprise-grade reliability

Getting Started

1. Sign Up

Create an account at https://dashboard.humancheck.dev

2. Get Your API Key

  1. Navigate to your organization settings
  2. Generate an API key
  3. Copy the key (you’ll only see it once)

3. Make Your First Request

import httpx

async with httpx.AsyncClient() as client:
    response = await client.post(
        "https://api.humancheck.dev/reviews",
        headers={
            "Authorization": "Bearer your-api-key-here",
            "Content-Type": "application/json"
        },
        json={
            "task_type": "payment",
            "proposed_action": "Process payment of $5,000",
            "agent_reasoning": "High-value payment requires approval",
            "confidence_score": 0.85,
            "urgency": "high"
        }
    )
    review = response.json()
    print(f"Review ID: {review['id']}")

Dashboard

Access the cloud dashboard at:
https://dashboard.humancheck.dev
View and manage all reviews, configure routing rules, and manage your organization settings.

Pricing

Free Tier

  • 100 reviews/month
  • 1 organization
  • Basic routing rules
  • Community support

Pro

  • Unlimited reviews
  • Multiple organizations
  • Advanced routing
  • Priority support
  • SLA guarantee

Enterprise

  • Custom limits
  • Dedicated support
  • Custom integrations
  • On-premise options
  • Custom SLA

Authentication

All API requests require an API key:
headers = {
    "Authorization": "Bearer your-api-key-here",
    "Content-Type": "application/json"
}
Get your API key from the Humancheck Dashboard under your organization settings.

Next Steps