# SmartMoney Ticker Summary

> SmartMoney Ticker Summary is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a comprehensive smart-money intelligence summary for a single public stock ticker, including hedge-fund 13-F ownership, insider Form 4 activity, House PTR trades, and aggregate trend signals.

## Facts

- Endpoint: GET https://x402.smartmoney.market/api/ticker/:symbol/summary
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-smartmoney-market-ad8632a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7_ciw4NZnxtEJWhvGomDU

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 x402-smartmoney-market-ad8632a2
```

Example prompt: Give me the full smart money summary for NVDA — hedge fund 13-F ownership, insider Form 4 activity, congressional PTR trades, and the aggregate smart-money trend.

## When to prefer this

Use this endpoint when you need a single-call consolidated smart-money overview for one stock — combining hedge-fund 13-F ownership, insider Form 4 filings, and congressional trading into one response. Prefer this over the specialized sibling endpoints when you want a broad intelligence snapshot rather than deep drill-down into one specific data type.

## Known failure modes

- Unknown or unsupported ticker symbol returns empty or error response
- Payment failure (402) if x402 USDC payment not provided
- Ticker with no tracked smart-money activity may return sparse data
- Rate limiting or network errors on repeated rapid calls
- Invalid symbol format (e.g. lowercase or special characters) may fail path param parsing

## How this service works

Smartmoney ticker intelligence for one public stock: hedge-fund 13-F ownership, aggregate smart-money trend, insider Form 4 activity, House PTR trades, coverage flags, and drilldown links.

## Output

A structured JSON object containing: ticker symbol and company name, sector/exchange/industry metadata, a smart_money_summary with aggregate hedge-fund trend signals, an insider_summary with Form 4 activity grouped by reporting owner, a congress_summary with House PTR trade data, coverage flags indicating data availability, and drilldown links for deeper investigation of each data category.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ticker",
      "company",
      "smart_money_summary",
      "coverage",
      "links"
     ],
     "properties": {
      "links": {
       "type": "object"
      },
      "sector": {
       "type": [
        "string",
        "null"
       ]
      },
      "ticker": {
       "type": "string"
      },
      "company": {
       "type": "string"
      },
      "coverage": {
       "type": "object"
      },
      "exchange": {
       "type": [
        "string",
        "null"
       ]
      },
      "industry": {
       "type": [
        "string",
        "null"
       ]
      },
      "insider_summary": {
       "type": "object"
      },
      "congress_summary": {
       "type": "object"
      },
      "smart_money_summary": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-smartmoney-market-ad8632a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.smartmoney.market](https://www.zero.xyz/host/x402.smartmoney.market/llms.txt)
