# 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 coverage flags.

## Facts

- Endpoint: GET https://x402.smartmoney.market/ticker-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-e1e64819
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L6OEF6zxf5li8aw2S6C9J

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-e1e64819
```

Example prompt: Give me the full smart money rundown on NVDA — hedge fund 13-F ownership, insider Form 4 activity, House PTR trades, and whether it's covered.

## When to prefer this

Use this endpoint when you need a single consolidated smart-money overview for one stock, combining hedge-fund 13-F ownership trends, insider Form 4 filings, and congressional trading in one call. Prefer this over individual sibling endpoints when you want a quick high-level summary with coverage flags and drilldown links rather than deep per-fund or per-filer detail.

## Known failure modes

- Ticker symbol not tracked by Smartmoney — coverage flags will indicate untracked status; recommend calling /api/insider-tracked-stocks?q={symbol} as a free precheck
- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment failure via x402 protocol results in 402 response with no data returned
- Rate limiting or server unavailability returns 5xx error

## 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

Returns a structured object with the ticker and company name, an aggregate smart_money_summary object reflecting hedge-fund 13-F trends, an insider_summary object with Form 4 buy/sell activity, a congress_summary object with House PTR trade data, a coverage object with flags indicating tracked status, and a links object with drilldown URLs. Also includes sector, exchange, and industry metadata when available.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "AAPL"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ticker",
      "company",
      "smart_money_summary",
      "reporting",
      "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"
       ]
      },
      "reporting": {
       "type": "object"
      },
      "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-e1e64819/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)
