Track CEO & CFO Stock Sales in Real-Time
When a CEO buys or sells shares in their own company, it's one of the strongest signals available to investors. Revorian makes it easy to track these transactions as they happen.
Why CEO Trades Matter
Corporate insiders — especially CEOs and CFOs — have the deepest understanding of their company's health. Studies show that insider purchases tend to precede positive stock performance, while concentrated selling by executives can signal caution.
Get CEO/CFO Trades — Free, No Auth
# All CEO/CFO trades in the feed curl https://api.revorian.com/v1/feed?ceo_cfo=true # CEO/CFO purchases only curl https://api.revorian.com/v1/feed?ceo_cfo=true&type=buy # CEO/CFO trades at a specific company curl https://api.revorian.com/v1/feed/companies/TSLA
Search Historical Executive Trades
With an API key, search the full history:
# All CEO purchases at Apple over $500K curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/transactions?ticker=AAPL&transaction_code=P&min_value=500000" # Get Apple's insider sentiment summary curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/companies/AAPL/summary"
Set Up Alerts with Webhooks
Create a watchlist to get notified when executives trade:
# Add TSLA to watchlist with a webhook
curl -X POST -H "Authorization: Bearer rev_live_sk_..." \
-H "Content-Type: application/json" \
-d '{"ticker": "TSLA", "webhook_url": "https://your-app.com/webhook"}' \
https://api.revorian.com/v1/watchlistsUse with AI Assistants
Connect the Revorian MCP server to Claude or other AI assistants to ask natural language questions like "Are Tesla executives buying or selling?"
npx @revorian/mcp-server # Set REVORIAN_API_KEY=rev_live_sk_...
Get Started
The feed is free — no signup required. Get an API key for full search and signals.