# 2s.io Company 360 – SEC Profile by Ticker

> 2s.io Company 360 – SEC Profile by Ticker is a paid API for AI agents from 2s.io, paid per call via x402, $0.00576/call, status unknown (last checked 2026-09-14).

Returns a unified 360-degree SEC profile for a US public company by ticker, merging recent filings, curated XBRL financial fundamentals, and insider transactions in one call.

## Facts

- Endpoint: GET https://2s.io/api/finance/company-profile
- Price: $0.00576/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-company-360-sec-profile-by-ticker-6184f127
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iKPPXnVZYNHYbgtls9tvA

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 2s-io-company-360-sec-profile-by-ticker-6184f127
```

Example prompt: Pull the full SEC 360 profile for NVDA — give me the latest 10-K and 8-K filings, the XBRL fundamentals like revenue and net income, and any recent insider buys or sells, capped at 15 results per section.

## When to prefer this

Choose this endpoint when you need a single-call aggregation of SEC filings, XBRL financials, and insider trades for a US public company — instead of calling /api/finance/sec-filings, /api/finance/company-facts, and /api/finance/insider-trades separately. Ideal for equity research, due diligence workflows, or monitoring dashboards where breadth across all three data types matters more than depth in a single source.

## Known failure modes

- Invalid or unrecognized ticker returns an error in each section independently
- SEC EDGAR CIK resolution failure if ticker is delisted or not US-listed
- XBRL fundamentals section may return empty if company has not filed structured data
- Rate limiting or payment failure returns 402 status
- formType filter with no matching filings returns an empty filings list

## How this service works

Company 360 — a US public company's SEC picture in one call by ticker. Merges three SEC sources: recent filings (10-K/10-Q/8-K and all form types, with links), curated XBRL fundamentals (revenue, net income, EPS, assets, etc. — annual + quarterly series), and recent insider transactions (Form 4 buys/sells by officers & directors). Each section reports found/error independently. Equity research, due diligence, monitoring. Pass ticker (required); optional formType filters the filings section, limit caps each list. Individual sources: /api/finance/sec-filings, /api/finance/company-facts, /api/finance/insider-trades.

## Output

A merged JSON object with three independently-reported sections: (1) recent SEC filings with form types and document links, (2) curated XBRL fundamentals including annual and quarterly series for revenue, net income, EPS, and total assets, and (3) recent Form 4 insider transactions showing officer/director buys and sells — each section reports success or error independently.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 50,
       "minimum": 1,
       "description": "Cap per list section."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker symbol."
      },
      "formType": {
       "type": "string",
       "description": "Optional filings filter, e.g. \"10-K\"."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-company-360-sec-profile-by-ticker-6184f127/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
