mirrored listing x402 eip155:8453

Returns the linked company profile, NAICS industry classification, and downstream business

Returns the linked company profile, NAICS industry classification, and downstream business-sector impact paths for one WARN event — use it to see who's affected and which vendors feel it next

Do you run disruption.forgemesh.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
30000 (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": "30000",
    "maxTimeoutSeconds": 1800
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "id": "71134d47-1c77-4742-a5e9-825ff55690f7"
        },
        "queryParams": {},
        "type": "http"
      },
      "output": {
        "example": {
          "aliases": [],
          "business_sector_impacts": [
            {
              "confidence": "high",
              "impact_path": "production changes can affect parts suppliers, tooling, maintenance contracts, packaging, and industrial services",
              "sector": "suppliers, tooling, and maintenance vendors"
            }
          ],
          "company": {},
          "event_id": "",
          "industry_classification": {
            "confidence": "medium",
            "coverage_note": "Industry inferred from source-provided industry text, not an explicit NAICS code.",
            "label": "Manufacturing",
            "method": "source_industry_text",
            "naics_sector": "31-33"
          },
          "intel": null,
          "locations": []
        },
        "type": "json"
      }
    },
    "routeTemplate": "/events/:id/company-intel",
    "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": {},
              "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": "30000",
            "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
            "network": "eip155:8453",
            "payTo": "0xA8774fACfD3Da2EA11f240C977b9973D78aDFCFe",
            "resourceUrl": "https://disruption.forgemesh.io/events/71134d47-1c77-4742-a5e9-825ff55690f7/company-intel",
            "scheme": "exact",
            "validUntil": 1789520754,
            "version": 1
          },
          "signature": "0xb30a41fc18614e889d32d987e7267506c02311d393213a4b7a0ed5a299d4e74273478aade1c42735a290aa8887752b7015199646b79b2d5f912575f9ddca7c9e1c"
        }
      ]
    },
    "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/events/:id/company-intel"
# -> 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/events/:id/company-intel");
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/events/:id/company-intel")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6469.json, and this resource appears in /discovery/resources and /discovery/search.