# GovParse Public Company Executives Feed

> GovParse Public Company Executives Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a bulk, cursor-paginated roster of current US public company executives and directors derived from SEC Section 16 filings (Forms 3, 4, 5), filterable by role, ticker, title, state, or CIK.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/public-company-executives
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-public-company-executives-feed-6723c0f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-vnK25f86hfeLiLlNeFie

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 govparse-public-company-executives-feed-6723c0f4
```

Example prompt: Pull the current officers and directors for NVDA from the SEC Section 16 filings — filter to officers only and show me the most recent 500 rows.

## When to prefer this

Use this endpoint when you need the official, SEC-attested roster of officers and directors for US public companies, sourced directly from Section 16 filings rather than scraped bios or third-party databases. It is ideal for compliance research, governance analytics, insider-tracking workflows, or any use case where the legal filing record matters more than a polished LinkedIn-style profile. Prefer it over web scraping or news-based sources when you need authoritative, timestamped, filing-backed data on who holds what role at a given company.

## Known failure modes

- Invalid or unknown ticker returns empty result set
- Malformed CIK string may return 400 or empty results
- Cursor from a different query context may return an error or unexpected page
- Date format not matching YYYY-MM-DD returns a validation error
- Requesting more than 1000 rows per page is rejected or capped
- State code CSV with invalid codes may silently filter to no results
- Rate limits or payment failures return 402 or 429 errors

## How this service works

Who are the current executives and directors of US public companies, as attested to the SEC? Bulk feed over Section 16 filings (Forms 3/4/5): one row per (issuer, person) with officer/director flags and free-text title from the pair's most recent filing, ticker/CIK joined. Newest-first, cursor-paginated up to 1000/page, filterable by role, ticker, title fragment, person state, issuer CIK, or since. The filed roster, not scraped bios. Observational public records, never an assessment.

## Output

A cursor-paginated list of rows, each representing a unique (issuer, person) pair, including officer and director boolean flags, the free-text title from their most recent Section 16 filing, the issuer's ticker and CIK, the filing date, and a next_cursor token for retrieving the next page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "cik": {
     "type": "string",
     "examples": [
      "1045810"
     ],
     "description": "Issuer SEC CIK (numeric) — one company's full roster."
    },
    "role": {
     "type": "string",
     "examples": [
      "officer"
     ],
     "description": "officer | director | any. Default any (a row can be both)."
    },
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-04-01"
     ],
     "description": "Only pairs whose most recent filing is on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "CA,NY"
     ],
     "description": "Reporting person's state code(s), CSV."
    },
    "title": {
     "type": "string",
     "examples": [
      "Chief Financial"
     ],
     "description": "Officer-title fragment (ilike), e.g. Chief Financial, CEO, Legal."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNi0zMCIsImsiOiIxMDQ1ODEwOjEyMzQ1NjcifQ"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "ticker": {
     "type": "string",
     "examples": [
      "NVDA"
     ],
     "description": "Issuer ticker(s), CSV."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-public-company-executives-feed-6723c0f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
