# US Public Company Profile (SEC EDGAR)

> US Public Company Profile (SEC EDGAR) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns SEC EDGAR profile data for a US public company including name, CIK, tickers, exchange, SIC code, state, fiscal year, and latest filing, queried by ticker or CIK.

## Facts

- Endpoint: GET https://api.x-402.online/v1/us/company
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-public-company-profile-sec-edgar-3e5bd510
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-RTrqS5lZ2hN6Ek41fXRw

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 us-public-company-profile-sec-edgar-3e5bd510
```

Example prompt: Can you pull up the SEC EDGAR profile for Tesla — I need their CIK, SIC code, state of incorporation, and fiscal year end? Use the ticker TSLA.

## When to prefer this

Use this endpoint when you need authoritative SEC EDGAR profile data for a US-listed public company, especially when you need official identifiers like CIK, SIC codes, exchange listing, or fiscal year information. Prefer this over web scraping or third-party databases when regulatory accuracy and official SEC sourcing is required. Best for KYB, compliance, or financial research workflows that start from a ticker or CIK.

## Known failure modes

- Unknown or invalid ticker returns 404 or empty result
- Private companies not registered with SEC will not be found
- CIK not found if the number is incorrect or refers to a non-public entity
- Rate limiting or payment failure for the x402 micropayment may block access
- Stale data if SEC EDGAR has not updated since last crawl

## How this service works

US public company profile (SEC EDGAR): name, CIK, tickers, exchange, SIC, state, fiscal year, latest filing. Query: ?ticker= or ?cik=

## Output

Returns a structured company profile from SEC EDGAR including the company's legal name, CIK identifier, ticker symbol(s), listed exchange, SIC industry code, state of incorporation, fiscal year end date, and metadata about their most recent SEC filing.

## 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",
     "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/us-public-company-profile-sec-edgar-3e5bd510/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
