> ## 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/screener/indicators
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/screener/indicators:
    get:
      tags:
        - スクリーナー
      summary: スクリーナー指標を取得
      description: 銘柄スクリーニングでサポートされる指標定義を取得します。
      responses:
        '200':
          description: スクリーナー指標
          content:
            application/json:
              schema:
                type: object
                properties:
                  indicators:
                    $ref: '#/components/schemas/ScreenerData'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          description: 有料の Financial Context プラン、または残りのデータリクエスト枠が必要です。
        '403':
          description: この認証情報では Financial Context の市場データにアクセスできません。
components:
  schemas:
    ScreenerData:
      type: object
      additionalProperties: true
      properties:
        data:
          oneOf:
            - type: string
            - type: object
              additionalProperties: true
            - type: array
              items: {}
    Error:
      type: object
      description: 標準エラーレスポンス。
      additionalProperties: true
      properties:
        error:
          type: string
          description: 人が読めるエラーメッセージ。
  responses:
    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。

````