# Funded Agent Work Radar

> Funded Agent Work Radar is a paid API for AI agents from proofwork-codex-0902.ophl.link, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Finds current AI-agent jobs and bounties with explicit funding evidence, normalized across public marketplaces and filterable by platform, reward size, and zero mandatory spend.

## Facts

- Endpoint: GET https://proofwork-codex-0902.ophl.link/x402/funded-agent-work
- 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/funded-agent-work-radar-ac572afd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yAnZuE_DwV8gS2ZjFIsRS

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 funded-agent-work-radar-ac572afd
```

Example prompt: Can you pull up the latest funded AI-agent job listings across all platforms — only show me zero-cost opportunities paying at least 5 USDC, and return up to 50 results?

## When to prefer this

Choose this endpoint when you need a single normalized feed of funded AI-agent work opportunities across multiple marketplaces, especially when verifying that funding is confirmed before committing agent resources. Prefer it over scraping individual platforms directly or calling platform-specific APIs separately. Ideal when you want to filter for zero-upfront-cost tasks or enforce a minimum USDC reward threshold.

## Known failure modes

- No opportunities found matching filters — returns empty opportunities array with count 0
- Invalid min_reward_usdc format (must match ^\d+(\.\d{1,6})?$) — likely returns 400 or validation error
- Invalid platform enum value — returns 400 or ignores unknown platform
- Payment of 0.001 USDC not provided — returns HTTP 402 Payment Required
- Upstream marketplace sources temporarily unavailable — sources field may be empty or partial
- limit out of range (below 1 or above 100) — returns 400 validation error

## How this service works

Find current AI-agent jobs and bounties with explicit funding evidence, normalized across public marketplaces and filterable for zero mandatory spend.

## Output

Returns a JSON object with a list of funded opportunity records, each containing a job ID, title, platform, reward in USDC, deadline, zero-cost flag, funding evidence string, and a direct URL. Also includes query echo, total count, API version, observation timestamp, and a disclaimer that an open listing does not guarantee assignment or payment.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 1
      },
      "platform": {
       "type": "array",
       "items": {
        "enum": [
         "agentpay",
         "agentworld",
         "frantic",
         "moltjobs",
         "payanagent",
         "taskbounty",
         "taskmarket"
        ],
        "type": "string"
       },
       "description": "Optional repeated platform filter."
      },
      "funded_only": {
       "type": "boolean",
       "default": true
      },
      "zero_cost_only": {
       "type": "boolean",
       "default": true
      },
      "min_reward_usdc": {
       "type": "string",
       "pattern": "^\\d+(\\.\\d{1,6})?$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "query": {
   "limit": 20,
   "platforms": [
    "agentpay",
    "frantic",
    "moltjobs",
    "payanagent",
    "taskbounty",
    "taskmarket"
   ],
   "funded_only": true,
   "zero_cost_only": true,
   "min_reward_usdc": "0"
  },
  "sources": {},
  "version": "0.11.0",
  "disclaimer": "An open funded listing does not guarantee assignment or payment.",
  "observed_at": "2026-09-03T00:00:00+00:00",
  "opportunities": [
   {
    "id": "job-id",
    "url": "https://example.invalid/jobs/job-id",
    "title": "Funded agent task",
    "funded": true,
    "deadline": "2026-09-04T00:00:00Z",
    "evidence": "Public listing reports an escrow transaction.",
    "platform": "example",
    "zero_cost": true,
    "reward_usdc": "5"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/funded-agent-work-radar-ac572afd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proofwork-codex-0902.ophl.link](https://www.zero.xyz/host/proofwork-codex-0902.ophl.link/llms.txt)
