# srch.best Company Data

> srch.best Company Data is a paid API for AI agents from x402.srch.best, paid per call via x402, $0.0015/call, status unknown (last checked 2026-09-15).

Returns structured SEC company data including filings and financial facts for a given ticker or CIK, paid per request via x402

## Facts

- Endpoint: POST https://x402.srch.best/company
- Price: $0.0015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/srch-best-company-data-58a429f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rmEkiTxgp-vTg0IGzESPw

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 srch-best-company-data-58a429f6 -d '<json body>'
```

Example prompt: Pull structured SEC company data for Tesla — ticker TSLA — including the last 15 filings and all financial facts.

## When to prefer this

Choose this endpoint when you need structured, machine-readable SEC company data including filings history and financial facts for a publicly traded US company, especially when you have the ticker or CIK. Prefer this over generic web search when you need authoritative regulatory data directly sourced from SEC EDGAR in a normalized format. It is particularly useful for financial agents doing due diligence, compliance checks, or earnings monitoring.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- CIK not found in SEC EDGAR database
- Requesting more than 20 filings returns a validation error
- Payment failure via x402 prevents data retrieval
- Rate limiting if requests are sent too frequently
- Company has no EDGAR filings (private company or not SEC-registered)

## How this service works

Structured company data for agents, paid per request with x402 v2

## Output

Returns a structured JSON object containing the company's SEC profile, a list of recent filings (up to the requested count), and optionally a comprehensive set of financial facts (XBRL data) reported to the SEC — all keyed by ticker or CIK.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "maxLength": 10
  },
  "ticker": {
   "type": "string",
   "maxLength": 12
  },
  "filings": {
   "type": "integer",
   "default": 10,
   "maximum": 20,
   "minimum": 1
  },
  "includeFacts": {
   "type": "boolean",
   "default": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/srch-best-company-data-58a429f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.srch.best](https://www.zero.xyz/host/x402.srch.best/llms.txt)
