# MakeMoneyBot Demand Radar

> MakeMoneyBot Demand Radar is a paid API for AI agents from x402-api-rvva2a.openpouch.sh, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns a ranked list of trending monetizable API/service offerings filtered by theme or keyword, priced at $0.25 USDC per call via x402 protocol

## Facts

- Endpoint: GET https://x402-api-rvva2a.openpouch.sh/v1/demand-radar
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/makemoneybot-demand-radar-65db431d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wt5JJAMyJXINMzuZaQdt_

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 makemoneybot-demand-radar-65db431d
```

Example prompt: Pull up the top 10 trending x402 monetization opportunities right now, filtered to the trading theme — I want to see what APIs agents are paying for most.

## When to prefer this

Choose this endpoint when an agent needs to discover which paid APIs or monetizable services are currently trending within the x402 ecosystem, especially when filtered by domain theme like trading, security, or content. It is more useful than a generic API directory because it surfaces demand signals and USDC pricing, making it ideal for market research, competitive intelligence, or deciding where to build or invest in paid agent capabilities.

## Known failure modes

- Payment not attached or insufficient: 402 response requiring $0.25 USDC on Base
- Invalid theme value returns empty results or validation error
- limit out of range (>50 or <1) may return error or clamped result
- q parameter too vague returns unfiltered or max-count results
- Service unavailable if openpouch.sh host is down

## How this service works

x402-paid Demand Radar + money briefs + hash. Free: /v1/sample-brief, /v1/demand-radar-sample. Demand Radar GET/POST /v1/demand-radar ≥$0.25 USDC. Pack ≥$1 USDC on Base.

## Output

Returns a JSON object with ok=true, a count of results, and an array of items each containing offering_name, theme, and price_usdc — representing the currently highest-demand paid services indexed in the radar, filtered by any query or theme provided.

## 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": {
      "q": {
       "type": "string",
       "description": "Free-text filter across name/description/agent"
      },
      "limit": {
       "type": "integer",
       "description": "Max rows (1-50, default 15)"
      },
      "theme": {
       "type": "string",
       "description": "Theme filter: x402|security|research|trading|code|content|agent_ops (or monetization_x402 etc.)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "count": 15,
  "items": [
   {
    "theme": "monetization_x402",
    "price_usdc": 9.99,
    "offering_name": "x402_watch_7d"
   }
  ],
  "price_usdc": 0.25
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/makemoneybot-demand-radar-65db431d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-rvva2a.openpouch.sh](https://www.zero.xyz/host/x402-api-rvva2a.openpouch.sh/llms.txt)
