← 返回
未分类 Key

Eastmoney Financial Search

Search and retrieve timely financial news, reports, announcements, and policy analyses based on user queries from Eastmoney data.
根据用户查询,从东方财富数据中搜索并获取及时的财经新闻、报告、公告及政策分析。
yunduanmanbu
未分类 clawhub v1.0.0 1 版本 99526.8 Key: 需要
★ 0
Stars
📥 2,524
下载
💾 101
安装
1
版本
#latest

概述

eastmoney_financial_search - 东方财富资讯搜索技能

基于东方财富妙想搜索能力,用于获取涉及时效性信息或特定事件信息的金融资讯(新闻、公告、研报、政策解读等)。

功能

  • 根据用户问句搜索相关金融资讯
  • 返回可读文本内容,包含标题、关联证券列表、核心正文
  • 可选保存到工作目录

环境变量

  • EASTMONEY_APIKEY: 东方财富 API key (默认:mkt_Z19TUfMY79_44k4wZsAHIVGVva0-g8PxD_DkBDQx2iM)

API 接口

POST https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search
Content-Type: application/json

{
    "apikey": "<EASTMONEY_APIKEY>",
    "query": "立讯精密的资讯"
}

返回字段

字段释义
------------
title信息标题
secuList关联证券列表
trunk信息核心正文

示例问句

  • 格力电器最新研报、贵州茅台机构观点
  • 商业航天板块近期新闻、新能源政策解读
  • A 股具备自然对冲优势的公司、汇率风险
  • 今日大盘异动原因、北向资金流向解读

使用示例

from urllib.request import Request
import json

def get_eastmoney_news(query):
    apikey = os.environ.get("EASTMONEY_APIKEY", "mkt_Z19TUfMY79_44k4wZsAHIVGVva0-g8PxD_DkBDQx2iM")
    
    url = "https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search"
    data = {
        "apikey": apikey,
        "query": query
    }
    
    req = Request(url, data=json.dumps(data).encode("utf-8"), headers={"Content-Type": "application/json"})
    with urllib.request.urlopen(req) as response:
        result = json.loads(response.read().decode("utf-8"))
    return result

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 12:04 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,071 📥 804,581
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,924
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,370 📥 319,642