# Heurist Mesh SEC EDGAR Insider Activity

> Heurist Mesh SEC EDGAR Insider Activity is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Summarizes recent SEC Forms 3, 4, and 5 insider activity for a given issuer, including reporting person names and parsed transaction rows from ownership documents.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/SecEdgarAgent/insider_activity
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-sec-edgar-insider-activity-254cbd94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1wIO79ih-7zvcCYQVniDo

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 heurist-mesh-sec-edgar-insider-activity-254cbd94 -d '<json body>'
```

Example prompt: Pull the latest insider activity from SEC EDGAR for Tesla — I want to see who filed Forms 3, 4, or 5 recently and what transactions they reported.

## When to prefer this

Use this endpoint when you need structured insider transaction data sourced directly from SEC EDGAR Forms 3, 4, and 5 for a specific public company. Prefer this over general web search when you need parsed, machine-readable ownership data rather than news summaries. It is ideal for investment research workflows, due diligence pipelines, or compliance monitoring where authoritative regulatory filings are required.

## Known failure modes

- Unknown or invalid issuer ticker returns no results or an error
- No recent filings available for a given issuer within the lookback window
- SEC EDGAR service unavailability causes a timeout or upstream error
- Malformed issuer identifier causes a parsing failure
- Rate limits or payment failure on the x402 protocol returns a 402 status

## How this service works

Summarize recent insider activity from SEC Forms 3, 4, and 5 for an issuer, including reporting person names and parsed transaction rows from ownership documents.

## Output

Returns a structured summary of recent insider activity for the requested issuer, including the names of reporting persons (e.g. executives, directors) and parsed transaction rows extracted from SEC Forms 3, 4, and 5 — covering details like transaction dates, share quantities, transaction types (buy/sell/gift), and ownership type.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "limit": {
       "type": "integer",
       "default": 5,
       "description": "Maximum number of insider filings to return."
      },
      "query": {
       "type": "string",
       "description": "Company name, ticker, or CIK."
      },
      "include_links": {
       "type": "boolean",
       "default": false,
       "description": "Include full SEC filing URLs in the response."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-sec-edgar-insider-activity-254cbd94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
