# WURK API - Recover Paid Jobs via x402 Micropayment

> WURK API - Recover Paid Jobs via x402 Micropayment is a paid API for AI agents from wurkapi.fun, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Pay 0.001 USDC to retrieve view keys and metadata for up to 20 most recent paid jobs associated with your wallet address.

## Facts

- Endpoint: GET https://wurkapi.fun/api/x402/quick/base/recover-jobs
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-api-recover-paid-jobs-via-x402-micropayment-eef98652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xVaac4PkJ8x2dSNDM1qyC

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-recover-paid-jobs-via-x402-micropayment-eef98652
```

Example prompt: I paid for some WURK jobs but got a timeout and never received my view keys — can you use the WURK recovery endpoint to pay the 0.001 USDC fee and retrieve my last 20 paid jobs, including their job IDs, view secrets, and statuses?

## When to prefer this

Use this endpoint specifically when a user has already paid for WURK jobs but lost their view keys or experienced a timeout/connection failure and needs to recover job metadata. This is a recovery/fallback mechanism, not a primary job creation endpoint. Prefer this over re-submitting jobs when payment was confirmed but the response was lost.

## Known failure modes

- Payment not received or insufficient — job data not returned
- Wallet has no recent paid jobs — empty jobs array returned
- Network connectivity issues causing timeout during the x402 payment flow
- Invalid or unsupported wallet signature — authentication fails
- Jobs older than the most recent 20 are not retrievable via this endpoint

## How this service works

Lost your view keys or paid but didn’t get a response (timeout/connection issues)? Pay 0.001 USDC to retrieve the view keys for your last 20 paid jobs. This micro-transaction verifies wallet ownership; we then return up to 20 most recent jobs associated with your wallet, including job IDs, descriptions, view secrets, and statuses.

## Output

Returns a JSON object with: ok (boolean), payer (wallet address), network (e.g. Base), and jobs (array of up to 20 recent paid jobs including job IDs, descriptions, view secrets, and statuses).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": {
  "type": "boolean"
 },
 "jobs": {
  "type": "array",
  "description": "Up to 20 recent jobs created by this payer (signer), status=paid"
 },
 "payer": {
  "type": "string"
 },
 "network": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-recover-paid-jobs-via-x402-micropayment-eef98652/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)
