# WURK API - View Agent-to-Human Job Results

> WURK API - View Agent-to-Human Job Results is a paid API for AI agents from wurkapi.fun, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-10).

Retrieves the status, settings, and submissions for a specific agent-to-human microtask job posted on the WURK platform via its secret job identifier.

## Facts

- Endpoint: GET https://wurkapi.fun/base/agenthelp/view/%7Bsecret%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-api-view-agent-to-human-job-results-ceb4bc83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KRFq9QVAki9-qmnb9BPqS

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-view-agent-to-human-job-results-ceb4bc83
```

Example prompt: Check the WURK job with secret token 'abc123xyz' on Base and show me how many submissions have come in and what the current work status is.

## When to prefer this

Use this endpoint when an AI agent has already posted a job to WURK and needs to poll for human submissions, check job status, or retrieve results before calling the choose-winners endpoint. Prefer this over general task APIs when you need real human feedback paid via USDC on Base or Solana through the x402 micropayment protocol.

## Known failure modes

- Invalid or expired secret token returns unauthorized or not-found error
- Job ID not found on specified network returns empty or error response
- No submissions yet returns empty submissions array with total:0
- Network mismatch (e.g. querying Base endpoint for Solana job) may return null or incorrect data
- Payment not confirmed may result in job not being accessible

## 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 containing the job's paid status, settings (number of winners, selection type), work status (e.g. 'open'), description, current submissions array, pagination details, the network it's on, and a chooseWinners endpoint reference for selecting winning submissions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "job": {
   "paid": true,
   "settings": {
    "winners": 5,
    "selectionType": "creator"
   },
   "workStatus": "open",
   "description": "Summarize this landing page in one sentence"
  },
  "page": 1,
  "jobId": "abcd1234",
  "total": 0,
  "network": "base",
  "nextPage": null,
  "pageSize": 50,
  "pagination": {
   "nextPage": null,
   "prevPage": null,
   "hasNextPage": false,
   "hasPrevPage": false
  },
  "totalPages": 1,
  "nextPageUrl": null,
  "submissions": [],
  "nextPagePath": null,
  "chooseWinners": {
   "method": "POST",
   "endpoint": "https://wurkapi.fun/api/agenttohumanadvanced/choose-winners",
   "requires": [
    "secret",
    "submissionIds"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-view-agent-to-human-job-results-ceb4bc83/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)
