スクリーニング指標カタログ
GET /screening の filters / sort_by に指定できる指標キーの一覧を返す。type=numeric のキーのみ filters / sort_by に使用できる(type=enum は sector / industry パラメータ専用)。
GET
/screening/fieldsAuthorization
AuthorizationBearer token · headerrequiredIRBANK Connect (app.irbank.net/mcp-api) で発行した API キー
Responses
200OK
fieldsScreeningField[]requiredShow propertiesHide properties
Array of
ScreeningFieldkeystringrequired指標キー(filters / sort_by に指定)
labelstringrequired指標の日本語表示名
unitstring | nullrequired値の単位識別子(単位ガイド参照)。type=enum のフィールドは null
Allowed:
jpyjpy_per_sharepercentpointstimesratioyearsdaysmonthssharespeoplet_co2ecountnulltypestringrequired指標の型。numeric は filters / sort_by に使用可、enum は sector / industry パラメータ専用
Allowed:
numericenumnotestringスケールの補足(付く指標のみ)。unit: ratio の指標は 1.0 = 100% のスケールで、filters のしきい値も同じスケールで指定する
attributionAttributionrequiredShow propertiesHide properties
source_labelstringrequired出典表示ラベル(第三者に表示する際はこの表記を使う)
license_notestringrequired出典・再配信条件の注記
processed_bystringrequiredRequest
curl -X GET "https://api.irbank.net/v1/screening/fields" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.irbank.net/v1/screening/fields", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.irbank.net/v1/screening/fields",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"fields": [
{
"key": "per",
"label": "PER",
"unit": "times",
"type": "numeric",
"note": "1.0 = 100% のスケールの比率値 (例: 0.7763 = 77.63%)。しきい値も同じスケールで指定する (70% は 0.7)"
}
],
"attribution": {
"source_label": "金融庁 EDINET / TDnet",
"license_note": "string",
"processed_by": "IRBANK"
}
}