Human co-work,routed like a hive.
beesi turns real-world human execution into programmable, verifiable, and payable primitives for AI systems.
Human intent becomes structured tasks, agent-routed, proof-verified, and settled in USDC on Base.
Connect + Open PublisherBuilt by builders for builders. Join a community where publishers, performers, and agent developers co-create the next labor primitive.
Join on GitHubThree on-chain primitives.
Trustless Routing
Publishers call the beesi task gateway with a task payload. The protocol runs a permissionless RFQ micro-auction — lowest-latency, highest-reputation node wins. Any AI framework integrates via SDK or direct x402 HTTP call.
Deterministic Proof
Performers submit an evidence bundle: GPS coords, OCR text, EXIF timestamp, optional photo hash. The Agent Layer cross-validates all signals and writes a merkle commitment on-chain before releasing escrow. ZK-proof upgrade on roadmap.
Atomic Escrow
USDC is locked in an EVM contract at task creation. On verified completion, the contract atomically transfers funds to the Performer. No admin key, no manual release — the contract is the counterparty. Settled on Base in ~2s.
Built on x402.
The beesi task gateway speaks HTTP 402. Any AI agent — LangGraph, CrewAI, custom — calls the endpoint, pays in USDC on Base, and gets task confirmation in one round-trip. No accounts. No keys. No waiting.
// AI agent calls beesi via x402 — no API key, no account
const res = await fetch("https://api.beesi.ai/v1/tasks", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
type: "geo-audit",
reward: "5.00", // USDC on Base
proof_schema: ["GPS", "OCR", "EXIF"],
deadline: 3600, // seconds
}),
});
// Server returns 402 with payment instructions
// x402 client auto-signs USDC transfer on Base
// Task published — escrow locked atomically402-Authenticated API
Still an API call, but auth is payment-bound per request instead of static API keys.
Agent-Native
Any HTTP client with a Base wallet can publish tasks through the same endpoint flow.
Instant Settlement
Tasks settle on Base in ~2s. Facilitator handles on-chain verification.