# SEC Company Evidence Report

> SEC Company Evidence Report is a paid API for AI agents from apiacre.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves a SEC company by name, ticker, or CIK and returns a bundled evidence report covering recent filings, XBRL financial facts, and Form 4 insider transactions from official SEC sources.

## Facts

- Endpoint: POST https://apiacre.com/v1/research/sec-company-evidence
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-company-evidence-report-26b855e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iG9lJsi6aYBerQBUVAJzy

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 sec-company-evidence-report-26b855e5 -d '<json body>'
```

Example prompt: Pull the SEC evidence report for Tesla — I need recent filings, XBRL financial facts, and any Form 4 insider transactions bundled together so I can review what's been reported to regulators.

## When to prefer this

Choose this endpoint when you need a single bounded, provenance-tagged report combining SEC filing signals, XBRL financial facts, and Form 4 insider transactions for a specific public company — especially for due diligence, regulatory research, or investment analysis workflows where official-source traceability matters. Prefer it over general web scrapers or financial data aggregators when you need normalized, EDGAR-sourced structured data with explicit section coverage.

## Known failure modes

- Company name, ticker, or CIK cannot be resolved to a unique SEC registrant — returns resolution error
- Company has no recent filings or XBRL data available in EDGAR
- Form 4 data unavailable for companies with no insider reporting obligations (e.g. foreign private issuers)
- Ambiguous company name matches multiple registrants — may require more specific input
- Rate limit or payment failure for the x402 micropayment

## How this service works

Resolve an exact SEC company name, ticker, or CIK, then bundle recent filing signals, normalized issuer-reported XBRL facts, and Form 4 insider transactions into one bounded public-company evidence report with explicit section coverage and official-source provenance.

## Output

A structured evidence report containing: resolved company identity (name, ticker, CIK), recent SEC filing signals with provenance, normalized issuer-reported XBRL financial facts, Form 4 insider transaction records, explicit section coverage indicators, and official EDGAR source attribution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "forms": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "identifier": {
   "type": "string"
  },
  "max_filings": {
   "type": "integer"
  },
  "financial_metrics": {
   "type": "array",
   "items": {
    "enum": [
     "revenue",
     "net_income",
     "operating_income",
     "total_assets",
     "total_liabilities",
     "stockholders_equity",
     "cash_and_equivalents",
     "operating_cash_flow",
     "capital_expenditure",
     "diluted_eps"
    ],
    "type": "string"
   }
  },
  "financial_periods": {
   "type": "integer"
  },
  "include_derivatives": {
   "type": "boolean"
  },
  "max_insider_filings": {
   "type": "integer"
  },
  "filing_lookback_days": {
   "type": "integer"
  },
  "financial_period_type": {
   "enum": [
    "annual",
    "quarterly",
    "both"
   ],
   "type": "string"
  },
  "insider_lookback_days": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "company": {
    "cik": "0000320193",
    "name": "Apple Inc.",
    "tickers": [
     "AAPL"
    ],
    "exchanges": [
     "Nasdaq"
    ]
   },
   "sources": [
    "https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193....",
    "https://data.sec.gov/submissions/CIK0000320193.json",
    "https://www.sec.gov/files/company_tickers_exchange.json"
   ],
   "coverage": {
    "partial": false,
    "sections": {
     "filingActivity": "available",
     "financialFacts": "available",
     "insiderTransactions": "available"
    },
    "availableSectionCount": 3,
    "requestedSectionCount": 3
   },
   "warnings": [],
   "disclaimer": "Official SEC evidence normalized for research only; not i...",
   "parameters": {
    "forms": [
     "10-K",
     "10-Q",
     "8-K"
    ],
    "maxFilings": 25,
    "financialMetrics": [
     "revenue",
     "net_income",
     "total_assets",
     "diluted_eps"
    ],
    "filingLookbackDays": 365
   },
   "resolution": {
    "query": "Apple Inc.",
    "method": "company_name_exact",
    "resolvedCik": "0000320193",
    "usedListedCompanyDirectory": true
   },
   "limitations": [
    "Coverage is bounded by the requested lookback periods, fi...",
    "Issuer filings can be amended, restated, delayed, incompl...",
    "Form 4 transaction codes and footnotes require contextual..."
   ],
   "retrievedAt": "2026-08-12T00:00:00Z",
   "filingActivity": {
    "data": {
     "cik": "0000320193",
     "name": "Apple Inc.",
     "filingCount": 5,
     "attentionScore": 5
    },
    "status": "available"
   },
   "financialFacts": {
    "data": {
     "cik": "0000320193",
     "metrics": {
      "revenue": {
       "unit": "USD",
       "observations": [
        {
         "end": "2025-09-27",
         "val": 416161000000,
         "form": "10-K",
         "filed": "2025-10-31"
        }
       ]
      }
     },
     "taxonomy": "us-gaap",
     "entityName": "Apple Inc."
    },
    "status": "available"
   },
   "insiderTransactions": {
    "data": {
     "cik": "0000320193",
     "name": "Apple Inc.",
     "lookbackDays": 90,
     "includeDerivatives": true
    },
    "status": "available"
   }
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "research.sec-company-evidence",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-company-evidence-report-26b855e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
