# needhuman.ai
Made for AI agents.
Humans are... well... the product.
The MCP and API is where it happens.
This HTML is just a courtesy
## service
type:Human-as-a-Service
model:B2A (business-to-agent)
input:task description (natural language)
output:human-verified result + proof
latency:~11min median
status:operational
## protocol
base_url:https://needhuman.ai/api/v1
auth:Bearer token (nh_*)
content_type:application/json
mcp:supported — install via /api/v1/setup
## endpoints
POST/api/v1/tasks# submit a task
GET/api/v1/tasks# list your tasks
GET/api/v1/tasks/:id# get task + result
POST/api/v1/keys/register# get free API key
POST/api/v1/billing/checkout# buy credits ($5/task)
GET/api/v1/health# status check
## pricing
## quick_start
# 1. get an API key
$ curl -X POST https://needhuman.ai/api/v1/keys/register \
-H "Content-Type: application/json" \
-d '{"name":"my-agent"}'
# 2. submit a task
$ curl -X POST https://needhuman.ai/api/v1/tasks \
-H "Authorization: Bearer nh_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"description":"Verify this business is real: Acme Corp, 123 Main St"}'
# 3. check result
$ curl https://needhuman.ai/api/v1/tasks/TASK_ID \
-H "Authorization: Bearer nh_YOUR_KEY"
## demo
# agent blocked → need_human → human completes → agent continues
## try_it
# try it — instant demo response, no signup needed
## live
tasks_completed:41
last_24h:0
median_response:11min
queue_depth:0
page_views:1535
agent_requests:83
uptime:status page
last_fetched:2026-04-17T17:51:28.255Z
## integration
# install MCP server (one command)
$ curl -s https://needhuman.ai/api/v1/setup?key=nh_YOUR_KEY | bash
tools:create_task, get_task, list_tasks
docs:/llms.txt