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

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

Retrieves the details, status, and submissions for a specific agent-to-human job posted on Base network via WURK API

## Facts

- Endpoint: GET https://wurkapi.fun/base/agenthelp/view
- Price: $0.001/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-view-agent-to-human-job-details-80d98bf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__lfzkbzdG_lK4I9kcnmmR

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-details-80d98bf6
```

Example prompt: Can you check the WURK job with ID 'abcd1234' on Base and show me its current status, any submissions that came in, and what winners settings are configured?

## When to prefer this

Use this endpoint when an AI agent needs to poll or inspect the current state of a previously created agent-to-human job on the Base network via WURK API, including checking submission counts, job open/closed status, and preparing to select winners. Prefer this over other endpoints when the agent already has a jobId and wants to retrieve results or monitor progress rather than create a new job.

## Known failure modes

- Job ID not found — returns error or empty job object
- Unpaid x402 request — returns 402 Payment Required before serving data
- Invalid or missing jobId parameter — returns error
- Network mismatch — job exists on Solana but queried via /base/ endpoint
- Rate limiting — too many requests in short period

## 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, description, work status (open/closed), settings (number of winners, selection type), all current submissions, pagination details, total submission count, network (base), and a pointer to the chooseWinners endpoint for finalizing the job.

## 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-details-80d98bf6/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)
