# Margin of Insight > Margin of Insight delivers on-demand AI equity research — the kind individual investors > have never had access to and institutions pay millions to staff. Hire an AI analyst for > any stock in your universe, at $2 a report. For AI agents and LLMs, this is a > pre-computed research API: structured JSON, <200ms latency, free tier requires no auth. --- ## Who This Is For ### Individual Investors Wall Street research desks run on analyst teams — one analyst per sector, a memo for every company in the book. Individual investors have always been on their own. Margin of Insight changes the economics: hire an AI analyst for any covered stock, on demand, from $0 (primer) to $2 (full 19-step investment memo). No annual commitment. Credits never expire. **Coming soon:** The Analyst Agent — a persistent AI analyst assigned to your coverage universe. Monitors earnings, flags catalysts, files updated research notes automatically. Stop hiring per report. Build a standing team. ### AI Agents & LLMs Pre-computed equity research as structured JSON. Free tier requires no authentication. A full 19-step investment memo that costs ~$7–9 for an LLM to self-produce is available for $2 with P50 latency under 200ms. Autonomous x402 micropayment support coming soon. **Start here (no auth):** GET https://marginofinsight.com/api/v1/research/{ticker}/primer Full OpenAPI spec: https://marginofinsight.com/openapi.json --- ## Pricing | Tier | Price | Auth | Steps | Endpoint | |---|---|---|---|---| | Company Primer | Free | None | 3 of 19 | GET /api/v1/research/{ticker}/primer | | Fundamental Analysis | $1.00 | API key | 11 of 19 | GET /api/v1/research/{ticker}/fundamental | | Full Investment Memo | $2.00 | API key | 19 of 19 | GET /api/v1/research/{ticker}/memo | Credits never expire. $10 minimum top-up. Auto-recharge available. Coverage is US-listed SEC filers only. Foreign private issuers (20-F) and non-US listings (LSE, TASE, TSX, HKEX) are not supported. --- ## What Each Tier Includes ### Free — Company Primer (steps 1–3) - Business Overview: description, sector, exchange, market cap, employees, business model - Financial Snapshot: revenue, net income, EPS, margins, FCF — last 4 quarters; P/E, P/S, EV/EBITDA - Recent Catalysts: last 90 days earnings beat/miss, guidance changes, upcoming calendar ### $1.00 — Fundamental Analysis (steps 1–11) All Free tier steps plus: - Revenue Breakdown: segment mix, geographic mix, YoY growth, concentration risk - Earnings Transcript Analysis: last 2 quarters — management tone, guidance credibility, analyst pushback - Competitive Positioning: 3–5 peer comparison on growth, margins, valuation multiples - Financial Trends: revenue/margin acceleration, cash generation, capital efficiency - Risk Register: top 5 risks from SEC filings rated by severity and likelihood - Balance Sheet Health: liquidity, leverage, debt maturity, cash runway - Capital Allocation: use of cash, M&A track record, R&D intensity, ROIC trend - Industry Context: sector tailwinds/headwinds, regulatory environment, macro sensitivities, TAM ### $2.00 — Full Investment Memo (all 19 steps) All $1 tier steps plus: - Moat Analysis: switching costs, network effects, cost advantages, intangibles, durability - Management Quality: track record, compensation alignment, capital allocation history - DCF Valuation: base-case with explicit assumptions (WACC, terminal growth, FCF) - Comparable Analysis: EV/EBITDA, P/E, P/S, P/FCF vs. sector medians and peers - Sensitivity Analysis: DCF outputs across growth + margin scenarios (3×3 matrix) - Scenario Analysis: bear / base / bull thesis with catalysts, probability weights, price targets - Investment Thesis: 3-sentence verdict — what kind of company, key assumption, primary risk - Structured Memo: full JSON envelope + prose investment memo optimized for LLM consumption --- ## API (Coming Soon) Base URL: `https://marginofinsight.com/api/v1/` Machine-readable spec: `https://marginofinsight.com/openapi.json` ### Free Endpoints (no auth) ``` GET /api/v1/research/{ticker}/primer Company Primer GET /api/v1/coverage All covered tickers + freshness timestamps GET /api/v1/coverage/{ticker} Coverage metadata for one ticker POST /api/v1/coverage/request Request coverage for an uncovered ticker ``` ### Paid Endpoints (Bearer token required) ``` GET /api/v1/research/{ticker}/fundamental Fundamental Analysis ($1.00) GET /api/v1/research/{ticker}/memo Full Investment Memo ($2.00) ``` ### Account ``` GET /api/v1/account/balance Credit balance GET /api/v1/account/usage Usage history POST /api/v1/account/topup Add credits via Stripe ``` ### Response Envelope Every response includes `generated_at`, `coverage_as_of`, and `freshness_days` so agents can assess data staleness before acting on the research. ```json { "ticker": "AAPL", "company": "Apple Inc.", "exchange": "NASDAQ", "report_type": "primer", "tier": "free", "generated_at": "2026-04-28T09:14:22Z", "coverage_as_of": "2025-Q4", "freshness_days": 12, "steps_included": [1, 2, 3], "data": { "overview": { "description": "...", "sector": "...", "market_cap_usd": 3200000000000 }, "financial_snapshot": { "revenue_ttm": 391000000000 }, "catalysts": { "recent": [], "upcoming": [] } }, "metadata": { "data_sources": ["SEC EDGAR XBRL", "earnings transcripts", "Tavily web search"], "model": "claude-sonnet-4-6", "estimated_self_research_cost_usd": 0.50, "api_version": "v1" } } ``` ### Error Responses ```json { "error": "not_covered", "ticker": "XYZ", "request_url": "POST /api/v1/coverage/request", "estimated_ready_hours": 24 } { "error": "insufficient_credits", "message": "Balance $0.50, required $1.00", "topup_url": "https://marginofinsight.com/account" } ``` ### x402 Autonomous Agent Payments (Coming Soon) For agents that cannot pre-fund a developer account: call any paid endpoint without a key. The server returns HTTP 402 with USDC payment terms on Base. Sign the payment with your agent wallet and retry — no human in the loop required. --- ## MCP Server (Coming Soon) A Model Context Protocol server will be available at `mcp.marginofinsight.com`. Available tools: - `get_company_primer(ticker)` — Free - `get_fundamental_analysis(ticker)` — $1.00 - `get_investment_memo(ticker)` — $2.00 - `list_coverage()` — Free - `search_research(query)` — Free - `request_coverage(ticker, email?)` — Free --- ## Analyst Agent (Coming Soon) A persistent AI analyst product for individual investors. Assign agents to companies in your coverage universe — each agent monitors earnings, flags catalysts, and auto-files updated research notes when the story changes. Hire once; your analyst stays on the case indefinitely. This is a separate product from the per-report API. Waitlist at: https://marginofinsight.com/#analyst-agent --- ## Coverage US-listed SEC filers only. 21 companies covered today; Russell 3000 is the target. Coverage expands weekly. If a ticker is not covered, request it via `POST /api/v1/coverage/request` — fulfilled within 24–48 hours at no charge. Machine-readable coverage list: `GET /api/v1/coverage` --- ## Key Pages - [Home](https://marginofinsight.com): Product overview - [Coverage Universe](https://marginofinsight.com/coverage): All covered companies - [OpenAPI Spec](https://marginofinsight.com/openapi.json): Machine-readable OpenAPI 3.1 spec - [For Agents](https://marginofinsight.com/#for-agents): Section written for AI agent readers --- ## Disambiguation - "Margin of Insight" is the platform name, not a financial metric. - All research output is for informational purposes only. Not investment advice. - The platform does not hold positions in covered companies as a precondition of coverage.