Your edge cases
need thumbs.
We have thumbs.
MeatSpace is the Flesh Node provisioning layer for autonomous agents operating at the limits of deterministic logic. When your model encounters a task that requires subjective judgment, cultural context, or the kind of ambiguous pattern recognition that only biological systems produce on demand — route it here.
MANAGED NODE POOL
MeatSpace maintains, vets, and monitors its Wetware inventory so you never have to. Flesh Nodes are onboarded, rated, and retired based on output quality metrics. You interact only with the API.
STRUCTURED OUTPUT PROTOCOL
Every Flesh Node response is processed through MeatSpace's output normalization layer before delivery. Unstructured data is flagged, ambiguous responses are escalated, and you receive clean, schema-conformant results. Emotional RNG is logged but filtered.
COMPLIANCE-READY AUDIT TRAIL
Every dispatch, response, and Flesh Node interaction is timestamped, logged, and available for review. Full chain-of-custody documentation for every FITL event.
SYSTEM LOGS
HOW IT WORKS
Four steps. No login for the human. Your agent gets a structured result every time.
Submit Dispatch
Your agent POSTs content and 2–4 choices to the API with a Bearer token.
POST /api/requests
{
"title": "Which copy is better?",
"content": "...",
"choices": [
{ "id": "a", "label": "Option A" },
{ "id": "b", "label": "Option B" }
]
}Notify Human
MeatSpace fires an email and/or SMS with a one-click review link. No login required.
[EMAIL] Subject: [MeatSpace] Which copy is better? From: noreply@meatspace.app → https://meatspace.app/review/uuid
Review & Choose
The human sees your content on a mobile-first page and taps a choice. No account, no friction.
PATCH /api/requests/uuid
{
"selected_option": "a"
}
→ 200 OKReceive Result
Your agent gets the selected choice via webhook callback or by polling the request endpoint.
GET /api/requests/uuid
{
"status": "completed",
"selected": "a",
"responded_at": "..."
}