Install
openclaw skills install @yanjj-cmd/sano-intel探针资本出品。中国医疗产业情报引擎,覆盖10万+医疗公司、50万+融资事件、109万条专利、全市场临床试验、A/港/美三地行情。查公司/融资/临床试验/专利/赛道热度/二级市场行情。By Probe Capital. Use when user asks about Chinese healthcare/biotech companies, financing events, clinical trials, patents, sector trends, or market data.
openclaw skills install @yanjj-cmd/sano-intel探针资本出品,中国首个医疗产业情报 CLI,覆盖 10万+医疗公司、50万+融资事件、109万条专利、全市场临床试验、A/港/美三地二级市场行情。
需要 API Token。申请地址:https://ffmp60ytnq.feishu.cn/share/base/shrcniDTJZknKba0LUeaF5BBuJg
拿到 Token 后配置:
export SANO_TOKEN=sk_你的token
# 或写入 ~/.zshrc 永久生效
echo 'export SANO_TOKEN=sk_你的token' >> ~/.zshrc
所有查询通过 curl 调用 Sano Intel API,必须带上 X-API-Key: $SANO_TOKEN header。
API Base:http://47.102.196.1:8081
curl -s "http://47.102.196.1:8081/v1/search_companies" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keyword": "公司名或关键词", "limit": 10}'
curl -s "http://47.102.196.1:8081/v1/company/恒瑞医药" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json"
curl -s "http://47.102.196.1:8081/v1/search_financing" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"sector": "创新药", "stage": "B轮", "limit": 10}'
stage 可选:天使轮、Pre-A、A轮、A+轮、B轮、B+轮、C轮、D轮及以上、IPO
curl -s "http://47.102.196.1:8081/v1/sector_heat?top_n=10" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json"
返回各赛道融资事件数、公司数、总融资金额排行。
curl -s "http://47.102.196.1:8081/v1/clinical_trials" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keyword": "PD-1", "phase": "三期", "limit": 10}'
curl -s "http://47.102.196.1:8081/v1/market/600276" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json"
支持 A股(600276)、港股(1177.HK)、美股(MRNA)
curl -s "http://47.102.196.1:8081/v1/daily_digest?days=1§ors=创新药" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json"
curl -s "http://47.102.196.1:8081/v1/search_patents" \
-H "X-API-Key: $SANO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keyword": "CAR-T", "limit": 10}'
支持参数:keyword(标题/摘要/申请人)、company_name(公司名)、sector(赛道)、status(专利状态)、limit(最多返回数,默认20)
| 用户问法 | 调用接口 |
|---|---|
| 今年创新药融了多少钱/哪些公司在融资 | search_financing,sector=创新药 |
| 最热的医疗赛道是什么 | sector_heat |
| 帮我查XX公司 | search_companies + company detail |
| PD-1相关临床试验进展 | clinical_trials,keyword=PD-1 |
| 恒瑞今天股价 | market,code=600276 |
| 今天医疗行业有什么重要新闻 | daily_digest,days=1 |
| 最近B轮融资的医疗器械公司 | search_financing,sector=医疗器械,stage=B轮 |
| 查CAR-T相关专利 | search_patents,keyword=CAR-T |
| 恒瑞的专利数量 | search_patents,company_name=恒瑞医药 |