Skip to content

內部人交易

GET /v1/quote/{symbol}/f10/insider-trades

獲取公司內部人(董事、高管、5% 以上股東)的交易記錄列表。數據基於美國 SEC 內部人申報(Form 3/4/144)。

請求參數

參數類型位置必填說明
symbolstring路徑證券代碼,如 US.AAPL
next_keystring查詢翻頁游標,首頁留空。
limitint查詢每頁條數。預設 10,最大 50
holder_idint查詢按內部人 ID 過濾。0=不過濾(預設)。

請求示例

bash
curl "$ip/v1/quote/US.AAPL/f10/insider-trades?limit=2" | jq

響應字段

字段類型說明
trades[].holder_idint內部人 ID。
trades[].namestring內部人姓名。
trades[].titlestring內部人頭銜。
trades[].trade_sharesint交易股數(正=買入,負=賣出)。
trades[].min_trade_date / max_trade_dateint區間內最早/最晚交易日(毫秒時間戳)。
trades[].min_trade_date_str / max_trade_date_strstring區間內交易日(yyyy-MM-dd)。
trades[].min_price / max_pricefloat區間內最低/最高交易價(USD)。
trades[].security_holder_quantityint當前持股數量。
trades[].transaction_typestring交易類型:Buy / Sell / Exercise and Sell / Other Acquisition 等。
trades[].source_group_namestring數據來源:Form 3 / Form 4 / Form 144 等。
trades[].is_proposed_sale_of_securitiesbool是否為計劃出售證券(Form 144)。
pagination.totalint交易記錄總數。
pagination.has_morebool是否還有下一頁。
pagination.next_keystring下一頁游標;無更多頁為 "-1"

限制範圍

  • 數據源為美國 SEC 內部人申報。覆蓋美股運營公司及其海外雙重上市/ADR。
  • 無此類申報的標的(A 股、多數港股、ETF 等)返回空 trades。

錯誤碼

ret_codeerror.code觸發條件處理建議
0成功(無數據時 trades 為空數組)
-3invalid_parameterlimit > 50 / symbol 格式非法校正參數
-7invalid_symbolsymbol 在證券庫中查不到檢查證券代碼
-2 / -5 / -6internal_error網關或後端內部錯誤重試,持續失敗請反饋

響應示例

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "trades": [
      {
        "holder_id": 234085,
        "is_proposed_sale_of_securities": false,
        "max_price": 311.02,
        "max_trade_date": 1779811200000,
        "max_trade_date_str": "2026-05-26",
        "min_price": 311.02,
        "min_trade_date": 1779811200000,
        "min_trade_date_str": "2026-05-26",
        "name": "Arthur Levinson",
        "security_description": "普通股",
        "security_holder_quantity": 3755576,
        "source_group_name": "Form 4",
        "title": "獨立非執行主席",
        "trade_shares": -50000,
        "transaction_type": "Sell"
      }
    ]
  },
  "pagination": { "has_more": true, "total": 178, "next_key": "10" }
}