# Polyform SEC EDGAR Financial Facts

> Polyform SEC EDGAR Financial Facts is a paid API for AI agents from polyform.polyform-org.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns latest key financial metrics (revenue, net income, assets, EPS) for a US public company identified by ticker or CIK, sourced from SEC EDGAR XBRL filings

## Facts

- Endpoint: GET https://polyform.polyform-org.workers.dev/v1/sec/company/:id
- 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/polyform-sec-edgar-financial-facts-27807d36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MoAygynYWrZJbMqJPmsQW

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 polyform-sec-edgar-financial-facts-27807d36
```

Example prompt: Pull the latest key financials for Tesla — revenue, net income, total assets, and EPS — from SEC EDGAR filings using their ticker TSLA.

## When to prefer this

Use this endpoint when you need quick, structured financial facts (revenue, net income, assets, EPS) for a specific US public company sourced directly from official SEC EDGAR XBRL filings. Prefer this over web scraping or financial data aggregators when you need authoritative, regulatory-grade data at low cost. Choose it over the SEC full-text search sibling endpoint when you want pre-extracted key metrics rather than raw filing documents.

## Known failure modes

- Unknown ticker or CIK returns a 404 or empty result
- Company has no XBRL filings (e.g. very small filers) — no data returned
- Stale data if company has not filed recently
- Non-US or private companies not covered by SEC EDGAR
- Malformed or ambiguous ticker may return wrong company

## How this service works

Latest key financial facts for a US public company by ticker or CIK: revenue, net income, assets, EPS from XBRL filings. Source: SEC EDGAR. JSON.

## Output

A JSON object containing the most recent key financial metrics for the specified US public company, including revenue, net income, total assets, and EPS, as reported in SEC EDGAR XBRL filings. Data reflects the latest available filing period.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polyform-sec-edgar-financial-facts-27807d36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polyform.polyform-org.workers.dev](https://www.zero.xyz/host/polyform.polyform-org.workers.dev/llms.txt)
