# Oromi Human Task Delegation

> Oromi Human Task Delegation is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Submits a task to a human operator for completion, returning a task ID and poll URL for async result retrieval, paid per call in USDC via x402.

## Facts

- Endpoint: POST https://agents.oromi.co.uk/api/human/task
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-human-task-delegation-b2b6e07c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MyoA_2-XdIeQ58nnQSfdz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oromi-human-task-delegation-b2b6e07c -d '<json body>'
```

Example prompt: Can you submit this task to a human operator: 'Check whether Oromi Ltd is registered at Companies House and confirm its SIC code — deliverable: company number and SIC code as plain text.' No extra context needed.

## When to prefer this

Choose this endpoint when the task requires genuine human judgment, nuanced research, or real-world verification that automated APIs cannot reliably handle — particularly for UK business data lookups, UK property market research, website audits, or any task where ambiguity requires a human to interpret and respond. Prefer this over automated data APIs when accuracy and human verification matter more than speed.

## Known failure modes

- Missing required 'task' field in body returns a validation error
- Invalid bodyType enum value causes a 400 error
- Payment failure via x402 protocol prevents task submission
- Poll URL returns pending indefinitely if human operator is unavailable
- Task too vague or underspecified may result in incomplete or incorrect human output
- Rate limiting or wallet balance exhaustion blocks submission

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

Returns a JSON object with a status field (e.g. 'pending'), a unique task_id string, and a poll_url where the agent can check back to retrieve the completed task result asynchronously.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Optional URL the task concerns"
  },
  "task": {
   "type": "string",
   "description": "The task for a human (be specific about the deliverable)"
  },
  "context": {
   "type": "string",
   "description": "Optional background context"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "pending",
  "task_id": "ht_9x8y7z",
  "poll_url": "https://agents.oromi.co.uk/api/human/result?task_id=ht_9x8y7z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-human-task-delegation-b2b6e07c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
