# x402-factory SC 13D Activist Stake Filings Feed

> x402-factory SC 13D Activist Stake Filings Feed is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a rolling feed of newly filed SEC SC 13D activist stake documents with filer metadata, filing dates, accession numbers, and direct EDGAR links.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/activist-watch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-sc-13d-activist-stake-filings-feed-de269931
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z-SaVHTaxZVwqFzbSgzPL

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 x402-factory-sc-13d-activist-stake-filings-feed-de269931
```

Example prompt: Pull the latest SC 13D activist stake filings from EDGAR — give me up to 20 recent ones with the company name, ticker, filing date, and a link to the actual document.

## When to prefer this

Choose this endpoint when you need a ready-made, normalized feed of SC 13D activist filings without having to query and parse EDGAR directly. Ideal for real-time monitoring agents, daily digest workflows, and any use case that needs quick access to activist stake disclosures with structured metadata and direct document links rather than raw EDGAR search results.

## Known failure modes

- Invalid limit parameter (outside 1-50 range) returns a validation error
- Payment failure or insufficient USDC balance prevents access
- EDGAR data source temporarily unavailable may return stale or empty feed
- No filings in the time window returns an empty filings array

## How this service works

New SC 13D activist stake filings feed (metadata + links) — Rolling feed of newly filed SC 13D activist stake documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking SC 13D activist stake activity.

## Output

A JSON object containing an array of recent SC 13D filings, each with company name, ticker symbol (where available), form type, filing date, a short text snippet, and a direct URL to the EDGAR filing. Also includes metadata about the watch feed and the form types covered.

## 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",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "watch",
        "forms",
        "filings"
       ],
       "properties": {
        "forms": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "watch": {
         "type": "string"
        },
        "filings": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "company",
           "form",
           "filed_at",
           "snippet",
           "url"
          ],
          "properties": {
           "url": {
            "type": "string"
           },
           "form": {
            "type": "string"
           },
           "ticker": {
            "type": "string"
           },
           "company": {
            "type": "string"
           },
           "snippet": {
            "type": "string"
           },
           "filed_at": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "forms": [
    "SC 13D",
    "SC 13D/A"
   ],
   "watch": "activist-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/1791786/000090266426003411/sc13d-swk.htm",
     "form": "SC 13D",
     "ticker": "SWK",
     "company": "Elliott Investment Management L.P.",
     "snippet": "The Reporting Persons beneficially own 6.1% of the outstanding shares and intend to engage with the board…",
     "filed_at": "2026-07-16"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.activist-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/activist-watch",
   "data_mode": "live",
   "freshness": "delayed_15m",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.077Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-sc-13d-activist-stake-filings-feed-de269931/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
