> ## Documentation Index
> Fetch the complete documentation index at: https://docs.humancheck.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Humancheck Platform

> Managed cloud platform with production-scale infrastructure

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
* **Advanced Routing**: UI-based routing rules with prioritization and fine-grained ACL
* **Built-in Connectors**: Dozens of connectors (Slack, Teams, Discord, Email, etc.) - connect instantly via UI
* **No-Code Integrations**: Native integrations with n8n, Zapier, Gumloop, and more
* **Multi-User Approval Workflows**: Configure complex approval chains with multiple reviewers
* **Webhooks**: Real-time webhook notifications for review events
* **Real-time Dashboard**: Cloud-hosted dashboard at `https://platform.humancheck.dev`
* **99.9% Uptime SLA**: Enterprise-grade reliability

## Getting Started

### 1. Sign Up

Create an account at [https://platform.humancheck.dev](https://platform.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

```python theme={null}
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://platform.humancheck.dev
```

View and manage all reviews, configure routing rules with UI-based controls, set up fine-grained ACL, connect to dozens of built-in connectors instantly, configure multi-user approval workflows, set up webhooks, and manage your organization settings.

## Pricing

<CardGroup cols={3}>
  <Card title="Free Tier" icon="gift">
    * 100 reviews/month
    * 1 organization
    * Basic routing rules
    * Community support
  </Card>

  <Card title="Pro" icon="star">
    * Unlimited reviews
    * Multiple organizations
    * Advanced routing with UI control
    * Prioritization and fine-grained ACL
    * Built-in connectors (dozens available)
    * No-code integrations (n8n, Zapier, Gumloop)
    * Multi-user approval workflows
    * Webhooks
    * Priority support
    * SLA guarantee
  </Card>

  <Card title="Enterprise" icon="building">
    * Custom limits
    * Dedicated support
    * Custom integrations
    * Advanced multi-user workflows
    * On-premise options
    * Custom SLA
  </Card>
</CardGroup>

## Authentication

All API requests require an API key:

```python theme={null}
headers = {
    "Authorization": "Bearer your-api-key-here",
    "Content-Type": "application/json"
}
```

<Tip>
  Get your API key from the [Humancheck Dashboard](https://platform.humancheck.dev) under your organization settings.
</Tip>

## Platform-Only Features

### Built-in Connectors

Connect to dozens of communication channels instantly via UI:

* **Slack** - Channels, DMs, threads
* **Microsoft Teams** - Channels and chats
* **Discord** - Servers and channels
* **Email** - SMTP notifications
* **SMS** - Text message alerts
* **PagerDuty** - Incident management
* **And many more...**

All connectors can be set up in minutes through the dashboard - no code required!

### No-Code Integrations

Integrate with popular automation platforms:

* **n8n** - Workflow automation
* **Zapier** - Connect 5000+ apps
* **Gumloop** - Workflow builder
* **Make (Integromat)** - Visual automation
* **And more...**

### Multi-User Approval Workflows

Configure complex approval chains:

* Sequential approvals (A → B → C)
* Parallel approvals (A & B both approve)
* Conditional workflows (if A approves, then B)
* Role-based routing
* Escalation paths

### Webhooks

Real-time notifications for review events:

* Review created
* Review assigned
* Decision made
* Status changed
* Custom events

## Next Steps

* Check out the [Quickstart Guide](/quickstart) for Platform
* Explore [API Integration](/integrations/rest-api)
* Set up [Connectors](/connectors/overview)
* Configure [Webhooks](/api-reference/endpoint/webhook)
* See [Use Cases](/use-cases/overview) for examples
* Review the [API Reference](/api-reference/introduction)
