Returns a location-only index of Ripple disruption signals — region, state, signal type, a
Returns a location-only index of Ripple disruption signals — region, state, signal type, and freshness — use it to discover where paid signal or sector-impact detail is available.
10000 (raw units)
price
4
calls / 30d
3
unique payers
2026-09-14
updated
Provider
disruption.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xA8774fACfD3Da2EA11f240C977b9973D78aDFCFe",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 1,
"q": "example",
"scope": "example"
},
"type": "http"
},
"output": {
"example": {
"count": 10,
"navigation": {
"message": "Location-only Ripple index. Company names, employee counts, commercial angles, sector names, spend areas, and impact paths are withheld until a paid signal or sector-impact unlock.",
"next_step": "Use unlock.sector_impacts for detailed downstream sector/vendor impact paths, or use q on /ripple/signals when you want a focused paid signal set."
},
"product": "ripple_signal_index",
"signals": [
{
"confidence_band": "high",
"depth": "high",
"event_id": "00000000-0000-0000-0000-000000000000",
"freshness": "fresh",
"publish_state": "approved",
"region": "San Mateo County, CA",
"score_band": "high",
"signal_id": "00000000-0000-0000-0000-000000000000",
"signal_type": "company_disruption_pattern",
"state": "CA",
"unlock": {
"sector_impacts": "/ripple/signals/{signal_id}/sector-impacts",
"sector_impacts_price_usd": 0.15
},
"why_not_high": [
"This index card intentionally withholds commercial detail until a paid signal or impact-path unlock.",
"Downstream business effects are inferred planning paths, not confirmed purchases, contracts, or buyer intent."
]
}
],
"why_not_high": [
"This is a discovery-level signal; deeper commercial context is reserved for the paid signal, brief, or sector-impact unlock.",
"Location and timing are enough to route the opportunity, but impact strength should be validated through the higher-detail endpoint."
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum index cards to return (max 25, default 10)",
"type": "number"
},
"q": {
"description": "Optional region, state, or broad signal search query",
"type": "string"
},
"scope": {
"description": "all, gold, or watchlist",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0xA8774fACfD3Da2EA11f240C977b9973D78aDFCFe",
"resourceUrl": "https://disruption.forgemesh.io/ripple/index",
"scheme": "exact",
"validUntil": 1789416050,
"version": 1
},
"signature": "0xc475ab77ee67f8b7c03245351c92882348b99080b6c963dd6370db03f5c8719967a3fb19b54be6dd51c1bc391494034274471ded23ed0b005ebcb61ab814ed341b"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://disruption.forgemesh.io/ripple/index" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://disruption.forgemesh.io/ripple/index");
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://disruption.forgemesh.io/ripple/index")
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/6459.json, and this resource appears in /discovery/resources and /discovery/search.