The complete list of risk factor classifications used in the risk factors endpoint
The complete list of risk factor classifications used in the risk factors endpoint. Can't find what you're looking for? POST feedback to /feedback, no charge.
10000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-04
updated
Provider
agent.massive.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x525f6dDcE9aF7a7179D7696aaBfCd5FCd15a21e6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 200,
"sort": "taxonomy.desc"
},
"type": "http"
},
"output": {
"example": {
"request_id": "daac836f71724420b66011d55d88b30b",
"results": [
{
"description": "Risk from inadequate performance management systems, unclear accountability structures, or ineffective measurement and incentive systems that could affect employee performance, goal achievement, and organizational effectiveness.",
"primary_category": "Governance & Stakeholder",
"secondary_category": "Organizational & Management",
"taxonomy": "1.0",
"tertiary_category": "Performance management and accountability"
},
{
"description": "Risk from requirements to monitor, document, and report on compliance with privacy and data protection regulations including risks from compliance program effectiveness, record-keeping requirements, and breach notification obligations.",
"primary_category": "Regulatory & Compliance",
"secondary_category": "Data & Privacy",
"taxonomy": "1.0",
"tertiary_category": "Compliance monitoring and reporting"
}
],
"status": "OK"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"default": 200,
"description": "Limit the maximum number of results returned. Defaults to '200' if not specified. The maximum allowed limit is '1000'.",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"primary_category": {
"description": "Top-level risk category",
"type": "string"
},
"primary_category.any_of": {
"description": "Filter equal to any of the values. Multiple values can be specified by using a comma separated list.",
"type": "string"
},
"primary_category.gt": {
"description": "Filter greater than the value.",
"type": "string"
},
"primary_category.gte": {
"description": "Filter greater than or equal to the value.",
"type": "string"
},
"primary_category.lt": {
"description": "Filter less than the value.",
"type": "string"
},
"primary_category.lte": {
"description": "Filter less than or equal to the value.",
"type": "string"
},
"secondary_category": {
"description": "Mid-level risk category",
"type": "string"
},
"secondary_category.any_of": {
"description": "Filter equal to any of the values. Multiple values can be specified by using a comma separated list.",
"type": "string"
},
"secondary_category.gt": {
"description": "Filter greater than the value.",
"type": "string"
},
"secondary_category.gte": {
"description": "Filter greater than or equal to the value.",
"type": "string"
},
"secondary_category.lt": {
"description": "Filter less than the value.",
"type": "string"
},
"secondary_category.lte": {
"description": "Filter less than or equal to the value.",
"type": "string"
},
"sort": {
"default": "taxonomy.desc",
"description": "A comma separated list of sort columns. For each column, append '.asc' or '.desc' to specify the sort direction. The sort column defaults to 'taxonomy' if not specified. The sort order defaults to 'desc' if not specified.",
"type": "string"
},
"taxonomy": {
"description": "Version identifier (e.g., '1.0', '1.1') for the taxonomy Value must be a floating point number.",
"format": "double",
"type": "number"
},
"taxonomy.gt": {
"description": "Filter greater than the value. Value must be a floating point number.",
"format": "double",
"type": "number"
},
"taxonomy.gte": {
"description": "Filter greater than or equal to the value. Value must be a floating point number.",
"format": "double",
"type": "number"
},
"taxonomy.lt": {
"description": "Filter less than the value. Value must be a floating point number.",
"format": "double",
"type": "number"
},
"taxonomy.lte": {
"description": "Filter less than or equal to the value. Value must be a floating point number.",
"format": "double",
"type": "number"
},
"tertiary_category": {
"description": "Most specific risk classification",
"type": "string"
},
"tertiary_category.any_of": {
"description": "Filter equal to any of the values. Multiple values can be specified by using a comma separated list.",
"type": "string"
},
"tertiary_category.gt": {
"description": "Filter greater than the value.",
"type": "string"
},
"tertiary_category.gte": {
"description": "Filter greater than or equal to the value.",
"type": "string"
},
"tertiary_category.lt": {
"description": "Filter less than the value.",
"type": "string"
},
"tertiary_category.lte": {
"description": "Filter less than or equal to the value.",
"type": "string"
}
},
"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.massive.com/stocks/taxonomies/vX/risk-factors" # -> 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.massive.com/stocks/taxonomies/vX/risk-factors");
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.massive.com/stocks/taxonomies/vX/risk-factors")
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/6787.json, and this resource appears in /discovery/resources and /discovery/search.