# Disclosure Categories Taxonomy

> Disclosure Categories Taxonomy is a paid API for AI agents from agent.massive.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the complete list of 8-K disclosure classifications (primary, secondary, and tertiary categories) used to categorize SEC 8-K filings.

## Facts

- Endpoint: GET https://agent.massive.com/stocks/taxonomies/vX/disclosures
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disclosure-categories-taxonomy-e5db4328
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CuckR6K3bfxiOLEvfmogi

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability disclosure-categories-taxonomy-e5db4328
```

Example prompt: Pull the full list of 8-K disclosure categories from Massive's taxonomy, sorted by taxonomy version descending, so I can see every primary, secondary, and tertiary classification label available.

## When to prefer this

Use this endpoint when you need to understand or enumerate the classification schema for 8-K disclosures before querying the actual 8-K disclosures endpoint. It is the authoritative reference for valid category values, useful for building filters, validating labels, or exploring how disclosures are hierarchically organized. Prefer this over the 8-K disclosures endpoint when you need the taxonomy structure itself rather than actual filing data.

## Known failure modes

- Invalid filter value returns empty result set rather than an error
- Exceeding limit of 1000 returns a validation error
- Unknown sort column causes a 400 bad request
- Payment not provided or insufficient USDC results in a 402 Payment Required response
- Taxonomy version filter with no matching records returns an empty list

## How this service works

The complete list of 8-K disclosure classifications used in the 8-K disclosures endpoint. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

A paginated list of disclosure classification records, each containing a taxonomy version, primary category, secondary category, and tertiary category label. Results are sortable and filterable by any category level or taxonomy version, with up to 1000 records per response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sort": {
       "type": "string",
       "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."
      },
      "limit": {
       "type": "integer",
       "default": 200,
       "maximum": 1000,
       "minimum": 1,
       "description": "Limit the maximum number of results returned. Defaults to '200' if not specified. The maximum allowed limit is '1000'."
      },
      "taxonomy": {
       "type": "string",
       "description": "Taxonomy version that defines this classification (e.g., '1.0')."
      },
      "taxonomy.gt": {
       "type": "string",
       "description": "Filter greater than the value."
      },
      "taxonomy.lt": {
       "type": "string",
       "description": "Filter less than the value."
      },
      "taxonomy.gte": {
       "type": "string",
       "description": "Filter greater than or equal to the value."
      },
      "taxonomy.lte": {
       "type": "string",
       "description": "Filter less than or equal to the value."
      },
      "taxonomy.any_of": {
       "type": "string",
       "description": "Filter equal to any of the values. Multiple values can be specified by using a comma separated list."
      },
      "primary_category": {
       "type": "string",
       "description": "Top-level disclosure category."
      },
      "tertiary_category": {
       "type": "string",
       "description": "Most specific disclosure category."
      },
      "secondary_category": {
       "type": "string",
       "description": "Mid-level disclosure category."
      },
      "primary_category.gt": {
       "type": "string",
       "description": "Filter greater than the value."
      },
      "primary_category.lt": {
       "type": "string",
       "description": "Filter less than the value."
      },
      "primary_category.gte": {
       "type": "string",
       "description
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "OK",
  "results": [
   {
    "taxonomy": "1.0",
    "description": "New CEO appointment with background, employment terms, and compensation.",
    "primary_category": "leadership_and_governance",
    "tertiary_category": "ceo_appointment",
    "secondary_category": "executive_leadership"
   },
   {
    "taxonomy": "1.0",
    "description": "Quarterly financial results including revenue, net income, EPS, and key operating metrics with management commentary.",
    "primary_category": "financial_results",
    "tertiary_category": "quarterly_earnings",
    "secondary_category": "earnings_and_performance"
   }
  ],
  "request_id": "a1b2c3d4e5f6a7b8c9d0e1f2"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disclosure-categories-taxonomy-e5db4328/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.massive.com](https://www.zero.xyz/host/agent.massive.com/llms.txt)
