跳轉到主要內容
GET
/
api
/
market-data
/
fundamental
/
insider_trades
獲取內部人交易披露
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/fundamental/insider_trades \
  --header 'x-api-key: <api-key>'
{
  "insiderTrades": [
    {
      "filing_date": "2026-06-12",
      "owner": "Jane Insider",
      "title": "Chief Executive Officer",
      "date": "2026-06-10",
      "code": "P",
      "type": "BUY",
      "shares": 123,
      "price": 123,
      "value": 123,
      "shares_after": 123
    }
  ]
}

授權

x-api-key
string
header
必填

在帳戶設置中生成的 Financial Context key。請以 x-api-key: <key> 形式發送。

查詢參數

symbol
string
必填

證券標的,例如 AAPL.US

count
integer
預設值:20

要返回的記錄數,預設 20,最大 100。

必填範圍: 1 <= x <= 100

回應

內部人交易披露

insiderTrades
object[]