Agent Decision Signal
Agent Decision Signal. One x402 payment buys one deterministic machine-readable market decision.
20000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-09
updated
Provider
agent-economy-signal-x402-mainnet.bronzetti-andrea.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbda48b29607b9dc66ef7e38b68ad53f2b17efb23",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"decision": {
"action": "RESEARCH_NOW",
"confidence": "HIGH",
"priority": 2,
"score": 70,
"target": "MCP Security"
},
"evidence": {
"acceleration": 0,
"acceleration_delta": 0,
"acceleration_status": "unknown",
"conviction": 100,
"evolution_status": "unknown",
"fresh_opportunities_24h": 13,
"snapshot_count": 842
},
"fresh_opportunity": {
"link": "https://github.com/tianzizhiming-svg/agentbridge",
"signal_score": 38,
"tier": "A",
"title": "Show HN: I built an M2M payment loop where AI Agents pay for data via x402"
},
"generated_at": "2026-08-18T17:19:32.264468+00:00",
"next_action": {
"target": "MCP Security",
"type": "research",
"urgency": "medium"
},
"price_usd": 0.02,
"stop_conditions": [
{
"metric": "acceleration_status",
"operator": "equals",
"value": "decelerating"
},
{
"metric": "conviction",
"operator": "below",
"value": 70
},
{
"metric": "fresh_opportunities_24h",
"operator": "equals",
"value": 0
}
],
"valid_for_seconds": 21600,
"why_now": [
"Very high conviction signal.",
"13 fresh opportunities were detected in the last 24 hours.",
"Signal persistence is supported by 842 historical snapshots."
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agent-economy-signal-x402-mainnet.bronzetti-andrea.workers.dev/premium/agent-brief" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent-economy-signal-x402-mainnet.bronzetti-andrea.workers.dev/premium/agent-brief");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agent-economy-signal-x402-mainnet.bronzetti-andrea.workers.dev/premium/agent-brief")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/11955.json, and this resource appears in /discovery/resources and /discovery/search.