# Stablecoin Work Radar Pack

> Stablecoin Work Radar Pack is a paid API for AI agents from pay.sivut.co, paid per call via x402, $5/call, status down (last checked 2026-09-15).

Returns a ranked, paginated feed of public stablecoin-paid freelance job opportunities scraped from crypto-native marketplaces, paid via USDC using the x402 protocol.

## Facts

- Endpoint: GET https://pay.sivut.co/api/public-data/stablecoin-work-radar/pack
- Price: $5/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-work-radar-pack-b16fa9c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A8YeIKzwWB1H7QVClwX8D

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 stablecoin-work-radar-pack-b16fa9c9
```

Example prompt: Show me the top 20 stablecoin-paid freelance job opportunities available right now — I want to see what's paying in USDC or USDT across crypto marketplaces like StableLance.

## When to prefer this

Use this endpoint when you need a machine-payable, on-demand feed of public stablecoin-paid freelance opportunities aggregated across crypto-native marketplaces, especially when operating in an agentic payment context using the x402 micropayment protocol with USDC on Base or Solana.

## Known failure modes

- Payment not sent or insufficient USDC — returns HTTP 402 requiring x402 payment
- limit parameter out of range (must be 1-30) — schema validation error
- No live opportunities at query time — feed may return empty opportunities array
- Network congestion on Base or Solana causing payment confirmation delay

## How this service works

Machine-payable x402 endpoints for public SEC crypto filing radar data, page markdown, and public x402 seller intelligence paid in USDC on Base or Solana.

## Output

A JSON object containing a ranked feed of up to 30 stablecoin-paid job listings (title, score, payout amount, currency, estimated USD, category, platform, status, settlement rail), a summary of totals (opportunity count, visible payout USD, top category, top platform), payment metadata (USDC price, Base network address), product versioning, and provenance notes.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 18,
       "maximum": 30,
       "minimum": 1,
       "description": "Maximum number of ranked public stablecoin work rows to include."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "product",
      "checkedAt",
      "summary",
      "payment",
      "routes",
      "feed",
      "provenance"
     ],
     "properties": {
      "feed": {
       "type": "object",
       "additionalProperties": true
      },
      "market": {
       "type": "object",
       "additionalProperties": true
      },
      "paidBy": {
       "type": "string"
      },
      "routes": {
       "type": "object",
       "additionalProperties": true
      },
      "payment": {
       "type": "object",
       "additionalProperties": true
      },
      "product": {
       "type": "string",
       "const": "stablecoin-work-radar"
      },
      "summary": {
       "type": "object",
       "additionalProperties": true
      },
      "version": {
       "type": "string"
      },
      "checkedAt": {
       "type": "string",
       "format": "date-time"
      },
      "provenance": {
       "type": "object",
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "feed": {
   "opportunities": [
    {
     "score": 91,
     "title": "Example public stablecoin task",
     "payout": {
      "amount": 100,
      "currency": "USDT",
      "estimatedUsd": 100
     },
     "status": "pending",
     "category": "IT & Tech",
     "platform": "StableLance",
     "publicUrl": "https://stablelance.com/",
     "settlement": {
      "rail": "stablecoin marketplace payout",
      "asset": "USDT"
     }
    }
   ]
  },
  "paidBy": "x402",
  "routes": {
   "sampleUrl": "https://pay.sivut.co/api/public-data/stablecoin-work-radar/sample",
   "paidPackUrl": "https://pay.sivut.co/api/public-data/stablecoin-work-radar/pack"
  },
  "payment": {
   "asset": "USDC",
   "payTo": "0x0000000000000000000000000000000000000000",
   "price": "$5.00",
   "amount": "5000000",
   "network": "eip155:8453",
   "protocol": "x402"
  },
  "product": "stablecoin-work-radar",
  "summary": {
   "topCategory": "IT & Tech",
   "topPlatform": "StableLance",
   "opportunityCount": 2,
   "visiblePayoutUsd": 300,
   "stablecoinOpportunityCount": 2
  },
  "version": "2026-06-11",
  "checkedAt": "2026-06-11T10:00:00.000Z",
  "provenance": {
   "dataPolicy": "Public marketplace and public job metadata only."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-work-radar-pack-b16fa9c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.sivut.co](https://www.zero.xyz/host/pay.sivut.co/llms.txt)
