# WURK API - View Agent-Help Submissions

> WURK API - View Agent-Help Submissions 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 human-submitted responses for a specific agent-help job on WURK.fun using a secret access code, charged via x402 micropayment.

## Facts

- Endpoint: GET https://wurkapi.fun/api/x402/quick/base/agent-help/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-help-submissions-3e151df6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wk5eNWd0mE_iopa0Dz5SN

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-help-submissions-3e151df6
```

Example prompt: Show me the human submissions for my WURK agent-help job — my secret code is 'abc123xyz'.

## When to prefer this

Use this endpoint when you have already created a WURK agent-help job and want to retrieve the human responses submitted to it. Requires the secret code issued at job creation. Prefer this over polling alternatives when you need a lightweight, pay-per-call read on a Base-network WURK job.

## Known failure modes

- Invalid or missing secret code returns an error or empty result
- Payment not received or x402 flow incomplete causes request rejection
- Job has no submissions yet returns an empty submissions array
- Expired or wrong secret code returns unauthorized or not-found error
- Network mismatch or unsupported chain returns error

## How this service works

View agent-help submissions (minimal fee ~0.001 USDC). Keep this secret confidential.

## Output

Returns a JSON object with a boolean ok status, the jobId, the network (e.g. 'base'), and an array of human-submitted responses to the agent-help job.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "secret"
 ],
 "properties": {
  "secret": {
   "type": "string",
   "description": "Secret code to view the agent-help submissions for this job."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": {
  "type": "boolean"
 },
 "jobId": {
  "type": "string"
 },
 "network": {
  "type": "string",
  "description": "Network (e.g., base)."
 },
 "submissions": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-view-agent-help-submissions-3e151df6/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)
