# 2s.io Insider Sentiment

> 2s.io Insider Sentiment is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Returns aggregated monthly insider sentiment for a US-listed stock, including net share-holding changes and Finnhub's MSPR score (-100 to +100).

## Facts

- Endpoint: GET https://2s.io/api/stocks/insider-sentiment
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-insider-sentiment-f95fda3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MOynO0f6YAAuktw4Sunav

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 2s-io-insider-sentiment-f95fda3b
```

Example prompt: What's the insider sentiment for Tesla (TSLA) over the past year — are executives and directors net buyers or sellers, and what does the monthly MSPR look like?

## When to prefer this

Use this endpoint when you need a distilled, aggregated monthly insider sentiment signal for a US-listed stock rather than raw individual insider filing data. Prefer this over manually parsing SEC filings when you want a clean MSPR score and net holdings delta by month, especially for trend analysis or comparative screening across companies.

## Known failure modes

- Invalid or non-US ticker returns empty results or an error
- Date range too narrow may return zero records
- Missing required ticker parameter returns a 400 error
- Ticker for a delisted company may return no data
- Service unavailability returns a 5xx error

## How this service works

Aggregated insider sentiment for a US-listed company, by month. For each month returns the net change in insider share holdings and Finnhub's MSPR (Monthly Share Purchase Ratio, −100 to +100 — higher means more net insider buying). Pass ticker and optionally a from/to window (YYYY-MM-DD; defaults to ~1 year). A distilled signal layered on top of raw insider filings. Data by Finnhub.

## Output

An array of monthly records for the requested ticker, each containing the month, net change in insider share holdings, and Finnhub's MSPR (Monthly Share Purchase Ratio, ranging from -100 to +100, where higher values indicate more net insider buying).

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed ticker, e.g. AAPL."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-insider-sentiment-f95fda3b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
