# Agent402 Company Dossier

> Agent402 Company Dossier is a paid API for AI agents from agent402.tools, paid per call via x402, $0.046/call, status unknown (last checked 2026-09-15).

Runs a comprehensive company research report in a single call, fetching live stock quote, financials, SEC filings, insider trades, and recent news in parallel for a given ticker.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/company-dossier
- Price: $0.046/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-company-dossier-3eb309a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kpw0RDRCbHEDuxxl2vN2o

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 agent402-company-dossier-3eb309a5 -d '<json body>'
```

Example prompt: Give me a full company dossier on NVDA — live quote, recent financials, SEC filings, insider trades, and latest news all in one shot.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source company snapshot in a single call rather than stitching together five separate API calls for quote, financials, SEC, insider trades, and news. It is ideal for research workflows where latency and simplicity matter and you want one x402 payment to cover all five data types at once.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Upstream data provider outage may cause partial or failed report
- Payment failure via x402 protocol prevents execution
- Delisted or OTC-only tickers may not be supported

## How this service works

Bundled execution of the Company dossier workflow - Comprehensive company research report in one call: live quote, financials, SEC filings, insider trades, and recent news - all in parallel. One x402 payment runs 5 underlying tools (stock-quote, company-financials, edgar-filings, edgar-insider-trades, search); partial-success per step.

## Output

A bundled company research report containing the live stock quote, financial statements, SEC filings, insider trade records, and recent news articles for the requested ticker — all fetched in parallel and returned in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Stock ticker (e.g. NVDA, AAPL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "NVDA"
  },
  "pack": "company-dossier",
  "steps": [
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "company-financials",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-insider-trades",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search",
    "result": {}
   }
  ],
  "summary": "5/5 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-company-dossier-3eb309a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
