Introduction
In today’s markets, institutional money often moves before the crowd. Retail and professional traders alike struggle to track across famous investors — Buffett, Cathie Wood, Ackman, Soros, and others — because data is fragmented, delayed to parse, and hard to turn into actionable portfolio signals.
This Institution Holding Tracker API solves this by delivering clean, ready-to-use 13F holdings for leading smart-money managers. Instantly list tracked institutions, pull the latest or historical quarter holdings with ticker, weight, market value and position changes, and retrieve filing metadata — all through a simple REST API you can plug into screeners, research notebooks, dashboards, or automated strategies.
Stop scraping filings by hand. Subscribe to Institution Holding Tracker, follow where the smart money is allocated, and build higher-conviction trades with institutional transparency at your fingertips.
1. List all Available Gurus
import requests, json url = "https://algogene.com/rest/v1/bot/140/Holdings.list_gurus" params = {} res = requests.post(url, data=json.dumps(params), headers=headers) print(res.text)
2. List all Available Filling Period for a Guru
import requests, json url = "https://algogene.com/rest/v1/bot/140/Holdings.list_periods" params = {"guru_id":"buffett"} res = requests.post(url, data=json.dumps(params), headers=headers) print(res.text)
