> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fcontext.com/llms.txt
> Use this file to discover all available pages before exploring further.

# インサイダー取引開示を取得



## OpenAPI

````yaml /ja/api-reference/openapi.json get /api/market-data/fundamental/insider_trades
openapi: 3.1.0
info:
  title: Financial Context
  version: 1.0.0
  description: >-
    Financial Context は、認証済みで従量制の読み取り専用 US
    株式市場データアクセスを提供します。`/api/market-data/*` エンドポイントを使用して、`.US` シンボルと `US` market
    フィルターで、クォート、ローソク足、市場カレンダー、ファンダメンタルズ、ニュース、スクリーナー、関連分析にアクセスできます。
servers:
  - url: https://openapi.fcontext.com
    description: 本番環境
security:
  - ApiKeyHeader: []
  - BearerAuth: []
tags:
  - name: クォート
    description: クォート、ローソク足、取引日、板情報、ブローカーキュー、その他の市場データエンドポイント。
  - name: コンテンツ
    description: 証券コンテンツ：ニュースとトピック。
  - name: 市場
    description: 市場ステータス、取引カレンダー、異常な取引活動、ランキング。
  - name: カレンダー
    description: 財務イベントカレンダー。
  - name: ファンダメンタルズ
    description: ファンダメンタルズ、アナリスト評価、バリュエーション、株主、取引開示。
  - name: スクリーナー
    description: スクリーニング戦略、フィルター、指標。
paths:
  /api/market-data/fundamental/insider_trades:
    get:
      tags:
        - ファンダメンタルズ
      summary: インサイダー取引開示を取得
      parameters:
        - $ref: '#/components/parameters/SymbolQuery'
        - name: count
          in: query
          required: false
          description: 返すレコード数。デフォルトは 20、最大 100。
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
          example: 20
      responses:
        '200':
          description: インサイダー取引開示
          content:
            application/json:
              schema:
                type: object
                properties:
                  insiderTrades:
                    type: array
                    items:
                      $ref: '#/components/schemas/InsiderTrade'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          description: 有料の Financial Context プラン、または残りのデータリクエスト枠が必要です。
        '403':
          description: この認証情報では Financial Context の市場データにアクセスできません。
components:
  parameters:
    SymbolQuery:
      name: symbol
      in: query
      required: true
      description: 証券シンボル。例：`AAPL.US`。
      schema:
        type: string
      example: AAPL.US
  schemas:
    InsiderTrade:
      type: object
      description: SEC EDGAR Form 4 の非デリバティブインサイダー取引。
      additionalProperties: false
      required:
        - filing_date
        - owner
        - title
        - date
        - code
        - type
        - shares
        - price
        - value
        - shares_after
      properties:
        filing_date:
          type: string
          description: SEC EDGAR の Form 4 提出日。
          example: '2026-06-12'
        owner:
          type: string
          description: 報告所有者名。
          example: Jane Insider
        title:
          type: string
          description: 役員肩書または関係のフォールバック。
          example: Chief Executive Officer
        date:
          type: string
          description: 取引日。
          example: '2026-06-10'
        code:
          type: string
          description: 元の Form 4 取引コード。
          example: P
        type:
          type: string
          description: マッピングされた取引ラベル。
          example: BUY
        shares:
          type: number
          description: 取引株数。
        price:
          type: number
          description: 1 株あたり取引価格。
        value:
          type: number
          description: 計算された取引価値：株数 * 価格。
        shares_after:
          type: number
          description: 取引後の保有株数。
    Error:
      type: object
      description: 標準エラーレスポンス。
      additionalProperties: true
      properties:
        error:
          type: string
          description: 人が読めるエラーメッセージ。
  responses:
    BadRequest:
      description: リクエストパラメータが無効です。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Financial Context 認証情報がない、または無効です。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: 'Unauthorized: missing API key'
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: 'アカウント設定で生成された Financial Context key。`x-api-key: <key>` として送信します。'
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth access token
      description: >-
        `market_data` scope を持つ Financial Context CLI、MCP、または agent クライアント向けの
        OAuth bearer token。

````