Skip to content

Search APIs - Unified Search (V1)

prod-global
GET
/api/search/v1

Retrieves social media data across all supported platforms (Weibo, Weixin, Douyin, Xiaohongshu, etc.) based on the provided keyword and time range. This non-real-time search provides a comprehensive view of cross-platform social sentiment and trends.

Typical use cases:

  • Analyzing brand mentions across different social ecosystems
  • Comparative sentiment monitoring between platforms
  • Historical keyword tracking within an 84-day window

Highlights

  • Time range limit: Data is restricted to the last 84 days from the current date.
  • Non-real-time: Results are not indexed in real-time and may have a delay.

Parameters

NameInTypeRequiredDescription
tokenquerystringYesAccess token for this API service.
keywordquerystringNoSearch query string. Supports:
- Multiple keywords (AND): keyword1 keyword2
- Multiple keywords (OR): keyword1~keyword2
- Excluded keywords (NOT): required_keyword -excluded_keyword
sourcequerystringNoTarget social media platform for search filtering.

Available Values:
- ALL: All platforms
- NEWS: News
- WEIBO: Sina Weibo
- WEIXIN: Weixin (WeChat)
- ZHIHU: Zhihu
- DOUYIN: Douyin (TikTok China)
- XIAOHONGSHU: Xiaohongshu (Little Red Book)
- BILIBILI: Bilibili
- KUAISHOU: Kuaishou
startquerystringNoStart time of the search period (yyyy-MM-dd HH:mm:ss). Required for initial request.
endquerystringNoEnd time of the search period (yyyy-MM-dd HH:mm:ss). Required for initial request.
nextCursorquerystringNoPagination cursor provided by the 'nextCursor' field in the previous response.

Code Samples

💡 Environment Note

Default samples use https://api.justoneapi.com (prod-global). For users in Mainland China, it is recommended to replace it with http://47.117.133.51:30015 (prod-cn) for better performance. See Environment Guide.

bash
# Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
curl -X GET "https://api.justoneapi.com/api/search/v1?token=YOUR_API_KEY"
text
I want to use the "Unified Search (V1)" API from Just One API.
API Endpoint: https://api.justoneapi.com/api/search/v1
HTTP Method: GET
Authentication: Append "?token=YOUR_API_KEY" to the URL.
OpenAPI Definition: https://docs.justoneapi.com/openapi/search-apis/unified-search-v1-en.json

Parameters:
- token (query): Access token for this API service. (Required)
- keyword (query): Search query string. Supports:
- Multiple keywords (AND): keyword1 keyword2
- Multiple keywords (OR): keyword1~keyword2
- Excluded keywords (NOT): required_keyword -excluded_keyword

- source (query): Target social media platform for search filtering.

Available Values:
- `ALL`: All platforms
- `NEWS`: News
- `WEIBO`: Sina Weibo
- `WEIXIN`: Weixin (WeChat)
- `ZHIHU`: Zhihu
- `DOUYIN`: Douyin (TikTok China)
- `XIAOHONGSHU`: Xiaohongshu (Little Red Book)
- `BILIBILI`: Bilibili
- `KUAISHOU`: Kuaishou
- start (query): Start time of the search period (yyyy-MM-dd HH:mm:ss). Required for initial request.
- end (query): End time of the search period (yyyy-MM-dd HH:mm:ss). Required for initial request.
- nextCursor (query): Pagination cursor provided by the 'nextCursor' field in the previous response.

Return format: JSON

Response Handling & Error Codes:
1. Business results should be determined by the "code" field in the response body (code 0 means success).
2. Timeout Recommendation: Set request timeout to at least 60 seconds.
3. Business Code Reference:
   - 0: Success
   - 100: Invalid or Inactive Token
   - 301: Collection Failed. Please Retry.
   - 302: Rate Limit Exceeded
   - 303: Daily Quota Exceeded
   - 400: Invalid Parameters
   - 500: Internal Server Error
   - 600: Permission Denied
   - 601: Insufficient Balance

Please help me write a script in my preferred programming language to call this API and handle the response.
python
# Tip: For Mainland China, replace https://api.justoneapi.com with 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
// Tip: For Mainland China, replace https://api.justoneapi.com with 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
// Tip: For Mainland China, replace https://api.justoneapi.com with 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
// Tip: For Mainland China, replace https://api.justoneapi.com with 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
// Tip: For Mainland China, replace https://api.justoneapi.com with 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;

Responses

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袋独立真空包装,方便储存也不容易变质。 📣 🏖️产自山西临汾洪洞,传统面食做法,口感劲道,搭配酥肉,味道很地道。 💛 ⏳适合想尝试地方特色面食的朋友,或者作为速食备餐,简单煮一煮就能吃。 #炸酱面 #面 #马永记牛肉面 #山姆泡菜乌冬面 #泡面 #三养火鸡面饺子 #面条 #顾大嫂 #炒方便面 #吃炸酱面"
      }
    ]
  }
}

💡 Note: For list data, the example shows only 1-2 items for simplicity. The actual count depends on the API response.