Returns a computed disruption score, total events, top industries, and the largest filings
Returns a computed disruption score, total events, top industries, and the largest filings within a radius (up to 500 miles) of a ZIP — use it to size territory-wide workforce risk
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
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": "100000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"zip": "77001"
},
"queryParams": {
"radius": 1
},
"type": "http"
},
"output": {
"example": {
"summary": {
"disruption_score": 0,
"total_employees_affected": 0,
"total_events": 0
}
},
"type": "json"
}
},
"routeTemplate": "/territory/:zip/disruption",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"radius": {
"description": "Radius in miles (max 500, default 100)",
"type": "number"
}
},
"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": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0xA8774fACfD3Da2EA11f240C977b9973D78aDFCFe",
"resourceUrl": "https://disruption.forgemesh.io/territory/77001/disruption",
"scheme": "exact",
"validUntil": 1789520757,
"version": 1
},
"signature": "0x8c2ba941597324b429949afe6eea36f564e67bf78ee1c2b16117d96a51f63fc508e6a6c6046d365fbbdb6322783340aa20a1c22b4d9f537d829e825c71d8e1621b"
}
]
},
"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/territory/:zip/disruption" # -> 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/territory/:zip/disruption");
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/territory/:zip/disruption")
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/6467.json, and this resource appears in /discovery/resources and /discovery/search.