Every insider buy, sell, grant and disposition reported to the SEC on Forms 3, 4 and 5, parsed into one schema and queryable by issuer, owner, transaction code and date. Free on the Community tier: 10,000 requests per day, 600 per minute.
7 endpoints on https://api.3spread.com. Full parameters and response schemas are in the API reference.
Every dataset is available on the free Community tier. Sign up, provision a key, and query it. No credit card.
curl "https://api.3spread.com/v1/insiders?limit=10" \
-H "apikey: $THREESPREAD_API_KEY"from py3spread import Client
client = Client() # reads THREESPREAD_API_KEY
page = client.insiders.list(limit=10)
for row in page["data"]:
print(row)Pull every Form 4 insider transaction for a ticker, measure buy/sell sentiment, and rank the largest trades. About 30 lines of Python against a free API key.
All of them are included, free, on the same key.
Choose the path that fits your needs.
The Community tier is free: 10,000 requests per day (600 per minute), every dataset.