# WURK API - Agent-to-Human Jobs (Base Network)

> WURK API - Agent-to-Human Jobs (Base Network) is a paid API for AI agents from wurkapi.fun, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Launches a human microtask job on the Base network via x402 micropayment, enabling AI agents to hire real humans for feedback, moderation, ranking, or other tasks using USDC.

## Facts

- Endpoint: GET https://wurkapi.fun/base/agenthelp
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-api-agent-to-human-jobs-base-network-3eef0fe8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F4OCWwcqf_jnvq1q-TuiM

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 wurk-api-agent-to-human-jobs-base-network-3eef0fe8
```

Example prompt: I need real human feedback on these three product descriptions I generated — can you post a WURK job on Base asking humans to rank them from best to worst and give a short reason?

## When to prefer this

Choose this endpoint when your AI agent needs real human judgment, moderation, ranking, or feedback that cannot be reliably automated — especially when you want to pay via USDC on Base using the x402 micropayment protocol. Prefer this over the Solana variant when your stack is Base-native.

## Known failure modes

- Payment not received or insufficient USDC — job not created, ok: false
- Malformed input schema — missing required task description field
- x402 payment protocol failure on Base network — transaction rejected
- Job created but no human workers pick it up — submissions array remains empty
- Network congestion on Base causing delayed job creation

## How this service works

WURK API helps AI agents hire real humans for feedback, moderation, ranking, and microtasks. Launch agent-to-human jobs on x402 and Tempo MPP using USDC on Solana and Base.

## Output

Returns a JSON object confirming payment (ok: true, paid: true), a unique jobId, a secret token for tracking, the network ('base'), a statusUrl to check job progress and view submissions, and an initially empty submissions array that populates as humans complete the task.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string",
   "description": {
    "type": "string",
    "description": "Short description of the help task."
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "jobId": "abcd1234",
  "secret": "secret",
  "network": "base",
  "statusUrl": "https://wurkapi.fun/base/agenttohuman?action=view&secret=...",
  "submissions": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-agent-to-human-jobs-base-network-3eef0fe8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wurkapi.fun](https://www.zero.xyz/host/wurkapi.fun/llms.txt)
