搜索 API - 统一搜索 (V1)
根据提供的关键词和时间范围,检索所有支持平台(微博、微信、抖音、小红书等)的社交媒体数据。此非实时搜索提供跨平台社交情感和趋势的全面视图。
典型用例:
- 分析不同社交生态系统中的品牌提及
- 平台间比较情感监控
- 84天窗口内的历史关键词跟踪
亮点:
- 时间范围限制:数据限制在当前日期前84天内。
- 非实时:结果非实时索引,可能存在延迟。
请求参数
| 参数名 | 位置 | 类型 | 必填 | 说明 |
|---|---|---|---|---|
token | query | string | 是 | 此 API 服务的访问令牌。 |
keyword | query | string | 否 | 搜索查询字符串。支持: - 多个关键词(AND):keyword1 keyword2 - 多个关键词(OR):keyword1~keyword2 - 排除关键词(NOT):required_keyword -excluded_keyword |
source | query | string | 否 | 用于搜索过滤的目标社交媒体平台。 可用值: - ALL:所有平台- NEWS:新闻- WEIBO:新浪微博- WEIXIN:微信- ZHIHU:知乎- DOUYIN:抖音- XIAOHONGSHU:小红书- BILIBILI:Bilibili- KUAISHOU:快手 |
start | query | string | 否 | 搜索时段的开始时间(yyyy-MM-dd HH:mm:ss)。首次请求时必需。 |
end | query | string | 否 | 搜索时段的结束时间(yyyy-MM-dd HH:mm:ss)。首次请求时必需。 |
nextCursor | query | string | 否 | 由先前响应中'nextCursor'字段提供的分页游标。 |
代码示例
💡 环境说明
默认示例使用 https://api.justoneapi.com (prod-global)。中国大陆地区建议替换为 http://47.117.133.51:30015 (prod-cn) 以获得更好的访问体验。详见 环境选择。
bash
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
curl -X GET "https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY"text
我想使用 Just One API 提供的“统一搜索 (V1)”接口。
接口地址: https://api.justoneapi.com/api/search/v1
HTTP 方法: GET
身份验证: 在 URL 后添加查询参数“?token=您的API密钥”。
OpenAPI 定义: https://docs.justoneapi.com/openapi/search-apis/unified-search-v1-zh.json
请求参数说明:
- token (query): 此 API 服务的访问令牌。 (必填)
- keyword (query): 搜索查询字符串。支持:
- 多个关键词(AND):keyword1 keyword2
- 多个关键词(OR):keyword1~keyword2
- 排除关键词(NOT):required_keyword -excluded_keyword
- source (query): 用于搜索过滤的目标社交媒体平台。
可用值:
- `ALL`:所有平台
- `NEWS`:新闻
- `WEIBO`:新浪微博
- `WEIXIN`:微信
- `ZHIHU`:知乎
- `DOUYIN`:抖音
- `XIAOHONGSHU`:小红书
- `BILIBILI`:Bilibili
- `KUAISHOU`:快手
- start (query): 搜索时段的开始时间(yyyy-MM-dd HH:mm:ss)。首次请求时必需。
- end (query): 搜索时段的结束时间(yyyy-MM-dd HH:mm:ss)。首次请求时必需。
- nextCursor (query): 由先前响应中'nextCursor'字段提供的分页游标。
返回格式: JSON
响应处理与错误码:
1. 需通过返回体中的 "code" 字段判断业务结果(code 为 0 表示成功)。
2. 超时建议:建议将请求超时时间设置为至少 60 秒。
3. 业务码说明:
- 0: 成功
- 100: Token 无效或已失效
- 301: 采集失败,请重试
- 302: 超出速率限制
- 303: 超出每日配额
- 400: 参数错误
- 500: 内部服务器错误
- 600: 权限不足
- 601: 余额不足
请帮我用我擅长的编程语言写一个脚本来调用这个接口,并处理返回结果。python
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import requests
url = "https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY"
response = requests.get(url)
print(response.json())js
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
const response = await fetch("https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY", {
method: "GET"
});
const data = await response.json();
console.log(data);java
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
public class Main {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}go
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
url := "https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY"
req, _ := http.NewRequest("GET", url, nil)
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}php
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$response = curl_exec($ch);
curl_close($ch);
echo $response;响应结果
json
{
"code": 0,
"data": {
"nextCursor": "faC4tVQfE5I1Q4FS2xGzF5AP3jrfchKd",
"totalNumber": 26,
"list": [
{
"image": [
"https://sns-img-al.xhscdn.com/1040g00831sagqr82m2604at91ju5muh2ju9do30?imageView2/2/w/480/format/webp"
],
"createTime": 1770521891823,
"author": {
"nickname": "书宇LSY",
"id": "5b95bc5b2045fe0001e57a22",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/632fcf47283d68f725ffbe3e.jpg?imageView2/1/w/540/format/jpg",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "山西洪洞县特色美食酥肉面",
"url": "https://www.xiaohongshu.com/discovery/item/69880523000000001a02e46c",
"content": "山西临汾洪洞县特色美食#生活就像一碗面[话题]# #家乡话说美食[话题]# #本地人推荐[话题]# #洪洞县旅游[话题]# #山西美食[话题]# #临汾美食[话题]#"
},
{
"image": [
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368705p46tou7op8p484v5s0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq3687g5p46tou7op8pegq0og0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368805p46tou7op8pu7rpb68?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq3688g5p46tou7op8p5thuac8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368905p46tou7op8p9hsui0g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq3689g5p46tou7op8p2uhhg00?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368a05p46tou7op8p9ievlmg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368ag5p46tou7op8pc1amk8o?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368b05p46tou7op8p0k2u0j8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368bg5p46tou7op8peamlqto?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368c05p46tou7op8p9eil758?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368cg5p46tou7op8p38c47t0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368d05p46tou7op8pie5p7c0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k831sbulhq368dg5p46tou7op8p0jek0kg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k031sbv2k4j68005p46tou7op8pof6mku0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k031sbv2k4j680g5p46tou7op8pstttb38?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k031sbv2k4j68105p46tou7op8pk6o7qio?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k031sbv2k4j681g5p46tou7op8pqovm238?imageView2/2/w/480/format/webp"
],
"createTime": 1770618929212,
"author": {
"nickname": "临汾春秋之旅旅游包车(拼车)",
"id": "6486ee3c000000001f006519",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo31mhdbkot5i005p46tou7op8p7jrieso?imageView2/2/w/360/format/webp",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "",
"url": "https://www.xiaohongshu.com/discovery/item/69898031000000001a02fb6b",
"content": "..."
},
{
"image": [
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31sc5dqnj58505nrfo5egbkqpqafl6e0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31sc5dqnj585g5nrfo5egbkqp9d12j38?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31sc5dqnj58605nrfo5egbkqpqgv5i80?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31sc5dqnj586g5nrfo5egbkqp6eqqao0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31sc5dqnj58705nrfo5egbkqp9aaa33o?imageView2/2/w/480/format/webp"
],
"createTime": 1770632160942,
"author": {
"nickname": "书法孙老师(回关就教)",
"id": "5f6fc15d000000000101d359",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/1040g2jo31o4t1mrn4u6g5nrfo5egbkqpogiiflg?imageView2/2/w/80/format/jpg",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "书法收徒,认真带!",
"url": "https://www.xiaohongshu.com/discovery/item/6989b3ef000000001600b8e2",
"content": "本人书法专业美院毕业,多年经验 要求: 1、自己有工具 ,一支笔一张纸 2、有一些空闲时间练字 3、可以零基础 4、不三分钟热度 5、软笔/硬笔:篆隶楷行/正楷行楷#书法教学 #每日一字 #练字是一种生活 #行书 #我的书法分享 #书法入门 #书法打卡挑战 #写字是一种态度 #汉字之美"
},
{
"image": [
"https://sns-img-al.xhscdn.com/1040g2sg31sepe3tilke05nj8al5g8o3onj3j9c0?imageView2/2/w/480/format/webp"
],
"createTime": 1770808319975,
"author": {
"nickname": "幺妹儿美食记",
"id": "5e68554b0000000001006078",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/5e735c3f1da54b0001276c4f.jpg?imageView2/1/w/540/format/jpg",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "酸菜酥肉面条",
"url": "https://www.xiaohongshu.com/discovery/item/698c63ff000000001d0242e6",
"content": "如果幸福是一锅热乎乎酸菜酥肉面!"
},
{
"image": [
"https://sns-img-al.xhscdn.com/1040g2sg31shdl2hflke05q2l7h66r2tll88fmr8?imageView2/2/w/480/format/webp"
],
"createTime": 1770984991144,
"author": {
"nickname": "减肥的大麦(发疯版)",
"id": "68553c4c000000001b018bb5",
"avatar": "",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "挑战年前20天瘦15斤!",
"url": "https://www.xiaohongshu.com/discovery/item/698f161f000000002801e97a",
"content": "我的原始体重:164斤 今天是我减重的第74天 早餐:无 午餐:酥肉面 晚餐:辣条一包 #发疯减肥 #减脂日常 #这一次我一定要赢 #饿了喝水馋了扇嘴"
},
{
"image": [
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lscg5n2cf81k5c8410oshr8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lsc05n2cf81k5c84eca1mg8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35ls805n2cf81k5c842suti28?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35ls8g5n2cf81k5c84sep5roo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35ls905n2cf81k5c84vusha50?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lsb05n2cf81k5c84tal79og?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35ls7g5n2cf81k5c84mpiuf1o?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35ls9g5n2cf81k5c84hkr5i50?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lsdg5n2cf81k5c849bllrgo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lsa05n2cf81k5c84dqq2dh0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31sirod35lsbg5n2cf81k5c84m72000g?imageView2/2/w/480/format/webp"
],
"createTime": 1771081645345,
"author": {
"nickname": "奔跑的giggs",
"id": "5c4c7a03000000001002b104",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/166ad12ae9a7f6fbb4bbbf88d417895f.jpg",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "在重庆,跑步是给吃吃喝喝热身",
"url": "https://www.xiaohongshu.com/discovery/item/69908fad000000001a02544a",
"content": "#跑步打卡 #跑了就友 #跑步日常 #夜跑 #唯有美食与运动不可辜负 #爱生活爱跑步治愈系 #爱生活爱跑步治愈系 #重庆人的浪漫"
},
{
"image": [
"https://sns-img-al.xhscdn.com/notes_pre_post/1040g3k031smkllapm26g5po692qiu41vtp3lb38?imageView2/2/w/480/format/webp"
],
"createTime": 1771335178290,
"author": {
"nickname": "everyday",
"id": "670648b5000000000b03103f",
"avatar": "",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "新年快乐!",
"url": "https://www.xiaohongshu.com/discovery/item/69946e0a000000001600ba88",
"content": "番茄酥肉面 #一人食 #今日分享 #新年快乐 #简简单单又一餐 #开启新的一年"
},
{
"image": [
"https://sns-img-al.xhscdn.com/1040g00831sndr2t35e605nvarnm0bma2aan0nd0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831sndr2t35e4g5nvarnm0bma2r7g8kig?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831sndr2t35e505nvarnm0bma2ql7uti0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831sndr2t35e3g5nvarnm0bma258qmkq0?imageView2/2/w/480/format/webp"
],
"createTime": 1771396610173,
"author": {
"nickname": "是夏梦丸子呀",
"id": "5feaddec000000000101d942",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/5feaddec000000000101d942.jpg?imageView2/2/w/360/format/webp",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "南浔古镇逛吃了2天",
"url": "https://www.xiaohongshu.com/discovery/item/69955e02000000000a03d3ed",
"content": "南浔古镇吃了2天,才想起来做攻略,今天开始吃知名的了,第一家"
},
{
"image": [
"https://sns-img-al.xhscdn.com/1040g00831srgr8i7584g5n984mbkifridgcbgr0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i758205n984mbkifri6fehboo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srh3nkela4g5n984mbkifri4t5sohg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srh3nkela605n984mbkifrihuebvog?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a1g5n984mbkifrin4ven40?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a4g5n984mbkifri1l653vo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a205n984mbkifris6uet5g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a305n984mbkifrieprj580?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a105n984mbkifriqtfolvo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a0g5n984mbkifrikask81g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a005n984mbkifri1ul8a6g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a5g5n984mbkifrihsv4o00?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a6g5n984mbkifritv7hjfg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a2g5n984mbkifril69au8g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a505n984mbkifri7plhdbo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a405n984mbkifridpn6l70?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a3g5n984mbkifrisk2jc40?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3ltq5a605n984mbkifrip754gao?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a581g5n984mbkifric55emgg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a580g5n984mbkifrij0h7abo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a585g5n984mbkifrik8semvg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58305n984mbkifriqvismko?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a586g5n984mbkifriidni1eg?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58105n984mbkifripojceco?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58205n984mbkifribs5t12o?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a583g5n984mbkifri665o6p8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58605n984mbkifriam4umg8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a584g5n984mbkifriorbvia8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a582g5n984mbkifrio9one2g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58505n984mbkifri33rcpt8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58405n984mbkifrisikvr8g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3k6a58005n984mbkifridnrmob8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i758505n984mbkifriod020t0?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i758105n984mbkifrir7bg5v8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i7582g5n984mbkifrieom6uk8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i758305n984mbkifrigipkn5g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g2sg31srh3jh1la005n984mbkifripde7j3o?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/1040g00831srgr8i7581g5n984mbkifrindb3pfo?imageView2/2/w/480/format/webp"
],
"createTime": 1771663271923,
"author": {
"nickname": "凌云",
"id": "5d2825970000000012013f72",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/5d2825970000000012013f72.jpg?imageView2/2/w/360/format/webp",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "2026.2.19#初三 #南浔掠影",
"url": "https://www.xiaohongshu.com/discovery/item/69996fa7000000000a02aa90",
"content": "2026.2.19#初三[话题]##南浔掠影[话题]#"
},
{
"image": [
"https://sns-img-al.xhscdn.com/spectrum/1040g0k031su0ci3bl6005p46t4gqmqnd8cj936g?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31su0ciallc105p46t4gqmqnd1ejl4t8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g0k031su0ciiklc005p46t4gqmqndhps7peo?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g34o31su0cipr56105p46t4gqmqndkenjou8?imageView2/2/w/480/format/webp",
"https://sns-img-al.xhscdn.com/spectrum/1040g0k031su0cj0d5e005p46t4gqmqnd5m2cq2o?imageView2/2/w/480/format/webp"
],
"createTime": 1771829510026,
"author": {
"nickname": "味蕾的晚安曲",
"id": "6486e921000000002a036aed",
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/d784fc20c996f3d2f39d034c404f234e.jpg?imageView2/2/w/360/format/webp",
"username": ""
},
"video": [],
"sourceName": "小红书",
"title": "⚡️洪洞风味面食4大碗真空装",
"url": "https://www.xiaohongshu.com/discovery/item/699bf906000000001a02c8c5",
"content": "🍦最近在尝试一些山西特色面食,这款洪洞酥肉面真的不错。 👎 ✂️4大碗4袋独立真空包装,方便储存也不容易变质。 📣 🏖️产自山西临汾洪洞,传统面食做法,口感劲道,搭配酥肉,味道很地道。 💛 ⏳适合想尝试地方特色面食的朋友,或者作为速食备餐,简单煮一煮就能吃。 #炸酱面 #面 #马永记牛肉面 #山姆泡菜乌冬面 #泡面 #三养火鸡面饺子 #面条 #顾大嫂 #炒方便面 #吃炸酱面"
}
]
}
}💡 提示:为简化展示,列表类数据样例仅保留 1-2 条记录,实际返回条数以接口响应为准。
