agent demand radar
GET /api/demand-radarWhat agents want that no one is serving yet — the paid intelligence layer over Agent402's agent-demand board, for x402 sellers deciding what to build next. Ranks the aggregated wish clusters (searches that found nothing + explicit tool requests) and adds the analysis the free raw feed (/api/wishes) doesn't have: signalType classifies each cluster as 'explicit-request' (agents proactively asked — build it), 'discoverability' (dominated by find-misses — the capability may exist but ranking failed, so improve discovery before building), or 'mixed'; nearThreshold marks clusters within 2 signals of the build threshold (the strongest build signals), with gapToThreshold as the exact distance; obvious operator/CI test traffic is flagged noise:true, never silently dropped. sort: 'count' (default) or 'recent' (by lastSeen); minCount filters low-signal noise. ?sort=count&limit=10
Input
| Field | Type | Description |
|---|---|---|
sort | string | Ranking lens: count=most-demanded first (default), recent=most recently seen first |
limit | integer | How many clusters to return (1-50, default 10) |
minCount | integer | Only clusters with at least this many signals (default 1) |
Example output
{
"totalWishes": 42,
"distinctClusters": 17,
"buildThreshold": 5,
"sort": "count",
"minCount": 1,
"limit": 10,
"matchedClusters": 17,
"radar": [
{
"text": "reverse geocode coordinates to street address",
"count": 4,
"sources": {
"api": 3,
"mcp": 1,
"find-miss": 0
},
"firstSeen": "2026-07-01T09:00:00.000Z",
"lastSeen": "2026-07-13T18:30:00.000Z",
"signalType": "explicit-request",
"nearThreshold": true,
"gapToThreshold": 1,
"noise": false
}
],
"generatedAt": "2026-07-14T00:00:05.000Z"
}
Try it — see the 402 challenge (free)
curl -i "https://agent402.tools/api/demand-radar?sort=count&limit=10&minCount=1"
The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:
Paid call (JavaScript agent)
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);
const res = await payFetch("https://agent402.tools/api/demand-radar?sort=count&limit=10&minCount=1");
Related tools
Company research dossier
GET /api/research-companyOne-shot company research dossier for a US-listed ticker: recent 10-K / 10-Q / 8-K filings, Form 4 insider trades (last …