alphasmo の公開REST API —— IPごとに無料の匿名利用枠、APIキーでより高い上限に。
登録不要、低いレート制限ですぐ利用できます。
curl https://alphasmo.com/api/v1/institutions無料APIキーを取得してレート制限を引き上げましょう。
curl -H "X-API-Key: <your-key>" https://alphasmo.com/api/v1/institutions/api/v1/healthHealth
/api/v1/institutionsList Institutions
| パラメータ | 場所 | 必須 |
|---|---|---|
| q | query | — |
| limit | query | — |
| offset | query | — |
/api/v1/institutions/{slug}Get Institution
| パラメータ | 場所 | 必須 |
|---|---|---|
| slug | path | ✓ |
/api/v1/institutions/{slug}/holdingsGet Institution Holdings
| パラメータ | 場所 | 必須 |
|---|---|---|
| slug | path | ✓ |
/api/v1/agent/identityCreate Agent Identity
/api/v1/market/stock/{identifier}Get Stock Detail
| パラメータ | 場所 | 必須 |
|---|---|---|
| identifier | path | ✓ |
/api/v1/market/stock-flowsGet Stock Flows
| パラメータ | 場所 | 必須 |
|---|---|---|
| direction | query | — |
| limit | query | — |
/api/v1/insider/stock/{ticker}Get Insider Stock Detail
| パラメータ | 場所 | 必須 |
|---|---|---|
| ticker | path | ✓ |
/api/v1/insider/smart-money-convergenceGet Smart Money Convergence
| パラメータ | 場所 | 必須 |
|---|---|---|
| limit | query | — |
| min_confidence | query | — |
| days | query | — |
/api/v1/congress/feedGet Congress Feed
| パラメータ | 場所 | 必須 |
|---|---|---|
| chamber | query | — |
| transaction_type | query | — |
| days | query | — |
| limit | query | — |
| offset | query | — |
/api/v1/congress/leaderboardGet Congress Leaderboard
| パラメータ | 場所 | 必須 |
|---|---|---|
| days | query | — |
| limit | query | — |
/api/v1/congress/stock/{ticker}Get Congress Stock Detail
| パラメータ | 場所 | 必須 |
|---|---|---|
| ticker | path | ✓ |
/api/v1/insights/13f/{slug}Get Insight Article
| パラメータ | 場所 | 必須 |
|---|---|---|
| slug | path | ✓ |
| locale | query | — |
/api/v1/insights/13f/by-institution/{institution_slug}Get Institution Insights
| パラメータ | 場所 | 必須 |
|---|---|---|
| institution_slug | path | ✓ |
| locale | query | — |
/api/v1/insights/13fList Insight Articles
| パラメータ | 場所 | 必須 |
|---|---|---|
| limit | query | — |
| offset | query | — |
| locale | query | — |
/api/v1/blog/{slug}Get Blog Post
| パラメータ | 場所 | 必須 |
|---|---|---|
| slug | path | ✓ |
| locale | query | — |
/api/v1/blogList Blog Posts
| パラメータ | 場所 | 必須 |
|---|---|---|
| limit | query | — |
| offset | query | — |
| locale | query | — |
| category | query | — |
alphasmo npmパッケージ付属のコマンドラインツール——登録もAPIキーも不要で試せます。
npx alphasmo stocks get AAPL| コマンド | 説明 |
|---|---|
| alphasmo institutions search <query> | 名前で13F機関を検索します。 |
| alphasmo institutions get <slug> | 機関の詳細プロフィールとセクター比率を取得します。 |
| alphasmo institutions holdings <slug> | 機関の現在の13F保有銘柄を取得します。 |
| alphasmo stocks get <identifier> | 銘柄の詳細——保有機関数、フロー、主要保有者を取得します。 |
| alphasmo stocks flows [-d buy|sell] | 機関の純フローで順位付けされた銘柄を取得します。 |
| alphasmo insider trades <ticker> | 銘柄の直近のForm 4インサイダー取引記録を取得します。 |
| alphasmo insider summary <ticker> | 銘柄のインサイダー信頼度スコア(30日/90日)を取得します。 |
| alphasmo convergence | 機関とインサイダーが同時に買っている銘柄を取得します。 |
AIエージェント向け(Claude Code、Claude Desktop、Cursorなど)——直接入力するものではありません。直接使うには上記のCLIをご利用ください。同じデータを呼び出し可能なツールとして提供します。
npx -y alphasmo@latest mcpMCPクライアントのサーバー設定に以下を追加してください:
{
"mcpServers": {
"alphasmo": {
"command": "npx",
"args": ["-y", "alphasmo@latest", "mcp"]
}
}
}| ツール | 説明 |
|---|---|
| search_institutions | 名前で機関投資家を検索します。 |
| get_institution_profile | 機関のプロフィール——カテゴリ、マネージャー、運用資産規模、パーソナリティスコアを取得します。 |
| get_institution_holdings | 機関の現在の13F保有銘柄を取得します。 |
| get_stock_overview | 銘柄の機関保有概要——保有機関数、純フロー、人気ランキングを取得します。 |
| get_stock_flows | 機関の純フローによる買い越し・売り越し銘柄を取得します。 |
| get_insider_activity | 銘柄のForm 4インサイダー取引活動を取得します。 |
| get_smart_money_convergence | 機関とインサイダーが同時に買っている銘柄を取得します。 |