红薯雷达 商品数据
5项查询能力
帮助选品者查询已收录的小红书公共商品,了解商品与店铺的历史变化。
商品增长榜有可信24小时观测窗口的公共商品增长榜。
需要提供:可选关键词、分类、价格、销量、粉丝数与增长范围,支持分页。
返回内容:有可信24小时观测窗口的公共商品增长榜。
工具名称:radar.get_product_ranking
完整参数结构
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"page": {
"default": 1,
"type": "integer",
"minimum": 1,
"maximum": 100000
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 50
},
"priceMin": {
"type": "number",
"minimum": 0
},
"priceMax": {
"type": "number",
"minimum": 0
},
"soldMin": {
"type": "number",
"minimum": 0
},
"soldMax": {
"type": "number",
"minimum": 0
},
"fansMin": {
"type": "number",
"minimum": 0
},
"fansMax": {
"type": "number",
"minimum": 0
},
"deltaMin": {
"type": "number",
"minimum": 0
},
"deltaMax": {
"type": "number",
"minimum": 0
},
"category": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
},
"q": {
"type": "string",
"maxLength": 100
}
},
"required": [
"page",
"limit"
],
"additionalProperties": false
}调用前用 get_tool 获取当前价格与可用状态。
搜索商品匹配关键词的已收录公共商品。
需要提供:关键词;可选分类与分页。
返回内容:匹配关键词的已收录公共商品。
工具名称:radar.search_products
完整参数结构
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"page": {
"default": 1,
"type": "integer",
"minimum": 1,
"maximum": 100000
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 50
},
"q": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"category": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"page",
"limit",
"q"
],
"additionalProperties": false
}调用前用 get_tool 获取当前价格与可用状态。
商品详情公共商品信息与最近观测。
需要提供:商品标识 skuId。
返回内容:公共商品信息与最近观测。
工具名称:radar.get_product_detail
完整参数结构
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"skuId": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"skuId"
],
"additionalProperties": false
}调用前用 get_tool 获取当前价格与可用状态。
历史趋势倒序分页的真实历史观测,缺失时段不补造数据。
需要提供:商品标识 skuId;可选7或30天、分页数量和游标。
返回内容:倒序分页的真实历史观测,缺失时段不补造数据。
工具名称:radar.get_product_history
完整参数结构
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"skuId": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"days": {
"default": 7,
"anyOf": [
{
"type": "number",
"const": 7
},
{
"type": "number",
"const": 30
}
]
},
"limit": {
"default": 100,
"type": "integer",
"minimum": 1,
"maximum": 200
},
"cursor": {
"type": "string",
"maxLength": 1024
}
},
"required": [
"skuId",
"days",
"limit"
],
"additionalProperties": false
}调用前用 get_tool 获取当前价格与可用状态。
店铺商品指定店铺已收录的公共商品,不触发实时全店采集。
需要提供:店铺标识 sellerId;可选分页。
返回内容:指定店铺已收录的公共商品,不触发实时全店采集。
工具名称:radar.get_shop_products
完整参数结构
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"page": {
"default": 1,
"type": "integer",
"minimum": 1,
"maximum": 100000
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 50
},
"sellerId": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"page",
"limit",
"sellerId"
],
"additionalProperties": false
}调用前用 get_tool 获取当前价格与可用状态。
仅限已收录公共数据,不代表小红书全站覆盖。