Insider Trading API — Get Real-Time SEC Form 4 Data
Revorian provides a REST API for accessing insider trading data at every US public company. Data is sourced directly from SEC EDGAR Form 4 filings and updated in real-time as filings are submitted.
Quick Start — No Authentication
The feed endpoints are free and require no API key:
# Latest insider trades curl https://api.revorian.com/v1/feed # Filter to purchases only curl https://api.revorian.com/v1/feed?type=buy # CEO/CFO trades only curl https://api.revorian.com/v1/feed?ceo_cfo=true # Insider trades at Tesla curl https://api.revorian.com/v1/feed/companies/TSLA # Today's biggest trades curl https://api.revorian.com/v1/feed/top-today
Data Coverage
- 1.3M+ insider transactions
- 7,000+ US public companies
- 75,000+ corporate insiders tracked
- Data from 2023 to present
- Source: SEC EDGAR (official US government data)
Authentication
For historical search, signals, and analytics, get an API key at revorian.com/pricing. Pass the key as a Bearer token:
curl -H "Authorization: Bearer rev_live_sk_..." \ https://api.revorian.com/v1/transactions?ticker=AAPL
Authenticated Endpoints
GET
/v1/transactions— Search all insider transactions with filtersGET
/v1/companies/:ticker/summary— 30/90/365-day insider sentimentGET
/v1/signals/clusters— Cluster buy/sell signalsGET
/v1/stats/sector-sentiment— Insider sentiment by sectorGET
/v1/stats/top-buys— Largest insider purchasesGET
/v1/insiders/:cik— Individual insider trading historySDKs
# TypeScript npm install revorian # Python pip install revorian
MCP Server (for Claude, ChatGPT, etc.)
Connect your AI assistant to insider trading data:
npx @revorian/mcp-server # Set REVORIAN_API_KEY=rev_live_sk_...
OpenAPI Spec
Machine-readable API specification: openapi.yaml