# Agent402 Ticker Pack

> Agent402 Ticker Pack is a paid API for AI agents from agent402.tools, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Generates a comprehensive financial dossier for a US stock ticker, including insider flow analysis and configurable focus areas, paid per call via USDC.

## Facts

- Endpoint: POST https://agent402.tools/v1/ticker-pack
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-ticker-pack-def2ace7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YxQ705JeeCzLGFdLIfDmE

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-ticker-pack-def2ace7 -d '<json body>'
```

Example prompt: Can you pull together a full ticker pack for TSLA — look at insider flow over the last 60 days and focus on debt and litigation risks?

## When to prefer this

Choose this endpoint when you need a bundled, pay-per-call financial research pack for a US-listed stock that includes insider flow analysis alongside configurable thematic focus areas — without requiring API key signup. Ideal for AI agents that need on-demand equity research billed per use via USDC over x402, rather than maintaining a subscription to a financial data provider.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Days parameter outside 7-365 range rejected
- More than 8 focus aspects provided causes validation failure
- Payment not received or insufficient USDC balance blocks the call
- Network or upstream data provider outage returns 5xx

## How this service works

One ticker, one purchase, the full picture. Runs the company due-diligence dossier (SEC filings, XBRL financials, grounded web research), the Form 4 insider-flow report with the actual transactions parsed, and a 13F institutional-holder sample read live off SEC EDGAR full-text search, then stitches them into ONE cited report: company, filings, insider flow, institutional holders and what to check next, with a merged source list and downloadable data appendices.

## Output

A structured JSON financial dossier for the requested US stock ticker, including insider flow data over the specified lookback period and written analysis covering any requested focus areas such as litigation, debt, or other configurable aspects. Full schema available via /openapi.json.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "days": {
   "type": "number",
   "description": "Insider-flow lookback in days, 7-365 (default 90)."
  },
  "focus": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Optional aspects for the dossier leg to emphasize (<= 8), e.g. [\"litigation\", \"debt\"]."
  },
  "ticker": {
   "type": "string",
   "description": "US stock ticker to cover, e.g. AAPL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "full example in /openapi.json",
  "truncated": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-ticker-pack-def2ace7/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)
