get-36kr-trending
Retrieve trending news and insights on startups, business, and technology from 36Kr. Access real-time rankings for investment trends, industry analysis, and innovation updates.
Instructions
获取 36 氪热榜,提供创业、商业、科技领域的热门资讯,包含投融资动态、新兴产业分析和商业模式创新信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | No | 分类 | hot |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"type": {
"anyOf": [
{
"const": "hot",
"description": "人气榜",
"type": "string"
},
{
"const": "video",
"description": "视频榜",
"type": "string"
},
{
"const": "comment",
"description": "热议榜",
"type": "string"
},
{
"const": "collect",
"description": "收藏榜",
"type": "string"
}
],
"default": "hot",
"description": "分类"
}
},
"type": "object"
}