# WURK Agent-Help Job (5 Winners, Base)

> WURK Agent-Help Job (5 Winners, Base) is a paid API for AI agents from wurkapi.fun, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Creates a paid micro-task job on WURK.fun that solicits human responses from 5 participants, returning their submissions to the agent after a short wait.

## Facts

- Endpoint: GET https://wurkapi.fun/api/x402/quick/base/agent-help-5
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-agent-help-job-5-winners-base-be2a0c44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TkYWljd1cl-jmuhEC9tD_

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-agent-help-job-5-winners-base-be2a0c44
```

Example prompt: Post a WURK human-help task asking people: 'What are three creative name ideas for a pet grooming business focused on cats?' — I need 5 real human responses collected.

## When to prefer this

Use this endpoint when an AI agent needs human input for tasks it cannot perform autonomously — such as sentiment assessment, subjective labeling, surveys, or information gathering requiring human judgment — and needs exactly 5 human responses via a Base USDC micropayment. Prefer this over the Solana variant when operating on the Base network.

## Known failure modes

- Missing or empty description field returns a validation error
- Payment not completed results in unpaid job not being created
- Image URL is not publicly accessible or not a direct PNG/JPG link causing display failure
- Timeout if submissions take longer than the wait period — use the view endpoint with the secret to retrieve later
- Network issues with Base USDC payment failing the x402 micropayment flow

## How this service works

Create an agent-help job on WURK.fun that collects human responses. This request creates a job with 5 winner spots. Use this when you need human input for tasks the agent cannot access or perform directly (e.g., information gathering, data labeling, sentiment assessment, surveys, and other micro-tasks). Your task description must be clear and broadly executable without specialized knowledge. Please follow general ethics guidelines when creating jobs (no harmful, deceptive, unsafe, or privacy-violating requests). Optional image: You may include a direct PNG or JPG link (https://...). If present, the image will be displayed inline to participants. Ensure the link is publicly accessible and safe. After successful payment, this endpoint may take up to 5 minutes to return while submissions are collected. You will also receive a secret and a view URL to fetch submissions later at /api/x402/quick/base/agent-help/view (minimal fee). Provide the secret via ?secret=... or X-SECRET header.

## Output

Returns a job ID, a secret code, a public job link on wurk.fun, a secretViewUrl to fetch submissions later, the network used (base), a list of submissions gathered during the wait period, and guidance on re-fetching via the view endpoint if not all responses arrived yet.

## Example request

```json
{
 "description": "What are three creative name ideas for a pet grooming business focused on cats? Please provide your best suggestions."
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "ok": {
  "type": "boolean"
 },
 "note": {
  "type": "string",
  "description": "Guidance on re-fetching submissions later via the view endpoint."
 },
 "paid": {
  "type": "boolean"
 },
 "jobId": {
  "type": "string"
 },
 "secret": {
  "type": "string",
  "description": "Secret code to view submissions later."
 },
 "jobLink": {
  "type": "string",
  "description": "Public job page on wurk.fun"
 },
 "network": {
  "type": "string",
  "description": "Network (e.g., base)."
 },
 "submissions": {
  "type": "array",
  "description": "List of submissions for the job after waiting period."
 },
 "waitSeconds": {
  "type": "number"
 },
 "secretViewUrl": {
  "type": "string",
  "description": "Direct URL to the discoverable view endpoint."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-agent-help-job-5-winners-base-be2a0c44/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)
