Precursor Detection - Catches risk signals before events materialize
Precursor Detection - Catches risk signals before events materialize
10000 (raw units)
price
8
calls / 30d
5
unique payers
2026-09-17
updated
Provider
x402.blackswan.wtf · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x154b1006435e5cfe2206e7777c1003f9438119b1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"assessment": "No significant precursor signals detected across monitored data sources",
"checked_at": "2025-01-11T12:00:00Z",
"severity": "none",
"signals": [],
"status": "clear"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "No input required - send empty object",
"properties": {},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"bodyType",
"body",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"assessment": {
"description": "Human-readable assessment summary",
"type": "string"
},
"checked_at": {
"description": "Timestamp of analysis",
"format": "date-time",
"type": "string"
},
"severity": {
"description": "Severity level",
"enum": [
"none",
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"signals": {
"description": "Detected precursor signals",
"items": {
"properties": {
"detail": {
"type": "string"
},
"source": {
"enum": [
"derivatives_data",
"social_intelligence",
"prediction_markets",
"market_data"
],
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"status": {
"description": "Overall risk status",
"enum": [
"clear",
"alert"
],
"type": "string"
}
},
"required": [
"status",
"severity",
"checked_at",
"assessment"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.blackswan.wtf/smart-agents/flare" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.blackswan.wtf/smart-agents/flare");
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://x402.blackswan.wtf/smart-agents/flare")
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/5887.json, and this resource appears in /discovery/resources and /discovery/search.