メインコンテンツへスキップ

メッセージ構造

{
  "id": 49917328,
  "title": "Option Alert: GOOG $210 Calls",
  "body": "",
  "authors": [{"name": "Benzinga Newsdesk"}],
  "published": "Wed Jan 14 2026 18:47:30 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:47:30 GMT+0000 (UTC)",
  "channels": ["Options"],
  "tickers": [{"name": "GOOG", "primary": false, "sentiment": 0}],
  "status": "Published",
  "link": null
}

フィールドリファレンス

フィールド説明
idIntegerコンテンツアイテムの一意の識別子
titleStringコンテンツの見出しまたはタイトル
bodyStringコンテンツの全文(存在する場合は HTML 形式)
authorsArrayname プロパティを持つ著者オブジェクトのリスト
publishedString元の公開時刻のタイムスタンプ(UTC)
updatedString最終更新時刻のタイムスタンプ(UTC)
channelsArrayコンテンツのカテゴリ(例: “Options”、“Press Releases”)
tickersArray関連する株式ティッカーとそのメタデータ
statusString公開ステータス(通常は “Published”)
linkString/nullBenzinga 上の記事全文への URL(利用可能な場合)

Ticker オブジェクト

{
  "name": "GOOG",
  "primary": false,
  "sentiment": 0
}
FieldTypeDescription
nameString株式のtickerシンボル
primaryBooleanこれがこのcontentの主要なtickerかどうか
sentimentIntegerセンチメント指標(0 = 中立)

メッセージ例

オプションアラート

{
  "id": 49917328,
  "title": "Alphabetオプションアラート: 金 $210 コール アスク: 5 @ $125.0 vs 7017 OI; 決算 2/4 引け後 参考=$334.37",
  "body": "",
  "authors": [{"name": "Benzinga Newsdesk"}],
  "published": "Wed Jan 14 2026 18:47:30 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:47:30 GMT+0000 (UTC)",
  "channels": ["Options"],
  "tickers": [{"name": "GOOG", "primary": false, "sentiment": 0}],
  "status": "Published",
  "link": null
}

ブロック取引

{
  "id": 49917330,
  "title": "Block Trade: TOGI 1.1M @ $0.044 at the bid",
  "body": "",
  "authors": [{"name": "Benzinga Newsdesk"}],
  "published": "Wed Jan 14 2026 18:47:33 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:47:33 GMT+0000 (UTC)",
  "channels": [],
  "tickers": [{"name": "TOGI", "primary": false, "sentiment": 0}],
  "status": "Published",
  "link": null
}

プレスリリース

{
  "id": 49917339,
  "title": "MediCapture Launches aiScope™ Pilot for Veterinary Sciences at VMX 2026",
  "body": "<p>Medical AI Made Easy—From Lab to Real-World Training...</p>",
  "authors": [{"name": "PRNewswire"}],
  "published": "Wed Jan 14 2026 18:47:00 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:48:02 GMT+0000 (UTC)",
  "channels": ["プレスリリース"],
  "tickers": [],
  "status": "Published",
  "link": "http://www.benzinga.com/node/49917339"
}

売買停止

{
  "id": 49917388,
  "title": "取引停止:東部標準時午後1時49分45秒に停止 - NASDAQのみ取引停止:ボラティリティ取引一時停止;東部標準時午後1時54分45秒に取引再開予定",
  "body": "",
  "authors": [{"name": "Benzinga Newsdesk"}],
  "published": "Wed Jan 14 2026 18:49:45 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:49:45 GMT+0000 (UTC)",
  "channels": [],
  "tickers": [{"name": "WSHP", "primary": false, "sentiment": 0}],
  "status": "Published",
  "link": null
}

アナリスト評価

{
  "id": 49917389,
  "title": "UBS、プロクター・アンド・ギャンブルの買い推奨を維持、目標株価を161ドルに引き下げ",
  "body": "UBS analyst Peter Grom maintains Procter & Gamble (NYSE:PG) with a Buy...",
  "authors": [{"name": "Benzinga Newsdesk"}],
  "published": "Wed Jan 14 2026 18:49:49 GMT+0000 (UTC)",
  "updated": "Wed Jan 14 2026 18:49:50 GMT+0000 (UTC)",
  "channels": ["News", "Price Target", "Hot", "Analyst Ratings"],
  "tickers": [{"name": "PG", "primary": true, "sentiment": 0}],
  "status": "Published",
  "link": null
}

一般的なチャンネル

Channel説明
Optionsオプション取引のアクティビティアラート
Press Releases企業のプレスリリース
News一般ニュース
Price Targetアナリストの目標株価更新
Analyst Ratingsレーティング変更
Hotトレンド/注目度の高いコンテンツ
General市場全般に関するコンテンツ
Opinionオピニオン記事や分析

処理に関するヒント

メッセージは改行区切りの JSON として配信されます。各行には完全な JSON オブジェクトが 1 つ含まれます。

ベストプラクティス

  1. 各行をパースする: 各改行は 1 つの完全な JSON メッセージを表します
  2. 本文中の HTML を処理する: body フィールドには HTML エンティティやタグが含まれる場合があります
  3. 更新を確認する: 変更を特定するために、publishedupdated のタイムスタンプを比較します
  4. チャネルでフィルタリングする: 特定のコンテンツタイプでフィルタリングするために channels 配列を使用します
  5. ID で追跡する: 重複排除のため、一意の識別子として id フィールドを使用します