# Search News

get_search_news(keyword, max_count=10, news_sub_type=NewsSubType.ALL)

  • Description

    Search news by keyword and return a list of matched news, notices, ratings, and other items.

  • Parameters

    Parameter Type Description
    keyword str Search keyword
    max_count int Maximum number of items returned in this request
    news_sub_type NewsSubType News sub type
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data pd.DataFrame When ret == RET_OK, returns search news list
    str When ret != RET_OK, returns error description
    • DataFrame fields:

      Field Type Description
      title str Title
      news_sub_type NewsSubType News sub type
      source str Source
      publish_time str Publish time
      view_count int View count
      related_securities list Related securities
      url str Detail page URL
  • Example

from moomoo import *
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)
ret, data = quote_ctx.get_search_news('space', 10, news_sub_type=NewsSubType.ALL)
if ret == RET_OK:
    print(data)
else:
    print('error:', data)
quote_ctx.close() # Remember to close the connection to avoid exhausting connection quota
1
2
3
4
5
6
7
8
  • Output
                                               title news_sub_type       source publish_time  view_count related_securities                                                url
0                         Space:202612月期 第一财季业绩说明材料          NEWS        日本交易所         5/13         329                 []           https://news.futunn.com/notice/307288728
1               Space:202612月期 第一财季业绩简报[日本会计准则](合并)          NEWS        日本交易所         5/13         277                 []           https://news.futunn.com/notice/307288725
2           SPACE CO., LTD. 第一季度盈利表现强劲,但全年利润和股息预期下调。          NEWS     TipRanks         5/13         201                 []  https://news.futunn.com/post/73007255?futusour...
3               New Street Research 开始覆盖太空经济和基础设施领域。          NEWS  PR Newswire         5/14        6035                 []  https://news.futunn.com/post/73047684?futusour...
4                                        Space:临时报告书          NEWS        日本金融厅         3/27         257                 []           https://news.futunn.com/notice/306761904
5                    Gemini Space Station | 8-K:重大事件        NOTICE      美股SEC公告         6/16         278          [US.GEMI]  https://news.futunn.com/notice/307532371?futus...
6  Extra Space Storage | 4:持股变动声明-高管 McNeal Gwyn ...        NOTICE      美股SEC公告         6/13         348           [US.EXR]  https://news.futunn.com/notice/307521769?futus...
7        Space Exploration Technologies Corp:承保或代理协议        NOTICE        SEDAR         6/12         400                 []  https://news.futunn.com/notice/307519369?futus...
8  Space Exploration Technologies Corp:补充长期形式的预备招...        NOTICE        SEDAR         6/12         231                 []  https://news.futunn.com/notice/307519371?futus...
9  Space Exploration Technologies Corp:补充长期形式的预备招...        NOTICE        SEDAR         6/12         210                 []  https://news.futunn.com/notice/307519370?futus...
1
2
3
4
5
6
7
8
9
10
11

API Restrictions

  • Maximum 10 search news requests per 30 seconds.