REVORIAN

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/transactionsSearch all insider transactions with filters
GET/v1/companies/:ticker/summary30/90/365-day insider sentiment
GET/v1/signals/clustersCluster buy/sell signals
GET/v1/stats/sector-sentimentInsider sentiment by sector
GET/v1/stats/top-buysLargest insider purchases
GET/v1/insiders/:cikIndividual insider trading history

SDKs

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

Full MCP setup guide →

OpenAPI Spec

Machine-readable API specification: openapi.yaml