PGY live blogger square
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page_num": 1,
"page_size": 20,
"seed": 0,
"nick_name": "李",
"category": {
"first": [
"<string>"
],
"second": [
"<string>"
]
},
"buyer": {
"group_tag": [
"<string>"
],
"persona_tag": [
"<string>"
]
},
"ecom": {
"avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"brand_avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"atv": {
"min": 500000000000,
"max": 500000000000
}
},
"live": {
"has_plan": true,
"plan_days": [
"<string>"
],
"avg_viewer": {
"min": 500000000000,
"max": 500000000000
},
"max_online": {
"min": 500000000000,
"max": 500000000000
}
},
"fans": {
"count": {
"min": 500000000000,
"max": 500000000000
},
"consumption": []
},
"flags": {
"actively_seeking": true,
"high_reply_rate": true,
"contact_visible": true,
"cooperated_before": true,
"following": true,
"follower": true,
"live_potential_high": true,
"daily_buyer": true,
"is_star": true
}
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list"
payload = {
"page_num": 1,
"page_size": 20,
"seed": 0,
"nick_name": "李",
"category": {
"first": ["<string>"],
"second": ["<string>"]
},
"buyer": {
"group_tag": ["<string>"],
"persona_tag": ["<string>"]
},
"ecom": {
"avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"brand_avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"atv": {
"min": 500000000000,
"max": 500000000000
}
},
"live": {
"has_plan": True,
"plan_days": ["<string>"],
"avg_viewer": {
"min": 500000000000,
"max": 500000000000
},
"max_online": {
"min": 500000000000,
"max": 500000000000
}
},
"fans": {
"count": {
"min": 500000000000,
"max": 500000000000
},
"consumption": []
},
"flags": {
"actively_seeking": True,
"high_reply_rate": True,
"contact_visible": True,
"cooperated_before": True,
"following": True,
"follower": True,
"live_potential_high": True,
"daily_buyer": True,
"is_star": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
page_num: 1,
page_size: 20,
seed: 0,
nick_name: '李',
category: {first: ['<string>'], second: ['<string>']},
buyer: {group_tag: ['<string>'], persona_tag: ['<string>']},
ecom: {
avg_gmv: {min: 500000000000, max: 500000000000},
brand_avg_gmv: {min: 500000000000, max: 500000000000},
atv: {min: 500000000000, max: 500000000000}
},
live: {
has_plan: true,
plan_days: ['<string>'],
avg_viewer: {min: 500000000000, max: 500000000000},
max_online: {min: 500000000000, max: 500000000000}
},
fans: {count: {min: 500000000000, max: 500000000000}, consumption: []},
flags: {
actively_seeking: true,
high_reply_rate: true,
contact_visible: true,
cooperated_before: true,
following: true,
follower: true,
live_potential_high: true,
daily_buyer: true,
is_star: true
}
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page_num' => 1,
'page_size' => 20,
'seed' => 0,
'nick_name' => '李',
'category' => [
'first' => [
'<string>'
],
'second' => [
'<string>'
]
],
'buyer' => [
'group_tag' => [
'<string>'
],
'persona_tag' => [
'<string>'
]
],
'ecom' => [
'avg_gmv' => [
'min' => 500000000000,
'max' => 500000000000
],
'brand_avg_gmv' => [
'min' => 500000000000,
'max' => 500000000000
],
'atv' => [
'min' => 500000000000,
'max' => 500000000000
]
],
'live' => [
'has_plan' => true,
'plan_days' => [
'<string>'
],
'avg_viewer' => [
'min' => 500000000000,
'max' => 500000000000
],
'max_online' => [
'min' => 500000000000,
'max' => 500000000000
]
],
'fans' => [
'count' => [
'min' => 500000000000,
'max' => 500000000000
],
'consumption' => [
]
],
'flags' => [
'actively_seeking' => true,
'high_reply_rate' => true,
'contact_visible' => true,
'cooperated_before' => true,
'following' => true,
'follower' => true,
'live_potential_high' => true,
'daily_buyer' => true,
'is_star' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list"
payload := strings.NewReader("{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}"
response = http.request(request)
puts response.read_bodyCommercial
PGY live blogger square
PGY live blogger square
POST
/
tikhub
/
xiaohongshu
/
pgy
/
get_live_blogger_list
PGY live blogger square
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page_num": 1,
"page_size": 20,
"seed": 0,
"nick_name": "李",
"category": {
"first": [
"<string>"
],
"second": [
"<string>"
]
},
"buyer": {
"group_tag": [
"<string>"
],
"persona_tag": [
"<string>"
]
},
"ecom": {
"avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"brand_avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"atv": {
"min": 500000000000,
"max": 500000000000
}
},
"live": {
"has_plan": true,
"plan_days": [
"<string>"
],
"avg_viewer": {
"min": 500000000000,
"max": 500000000000
},
"max_online": {
"min": 500000000000,
"max": 500000000000
}
},
"fans": {
"count": {
"min": 500000000000,
"max": 500000000000
},
"consumption": []
},
"flags": {
"actively_seeking": true,
"high_reply_rate": true,
"contact_visible": true,
"cooperated_before": true,
"following": true,
"follower": true,
"live_potential_high": true,
"daily_buyer": true,
"is_star": true
}
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list"
payload = {
"page_num": 1,
"page_size": 20,
"seed": 0,
"nick_name": "李",
"category": {
"first": ["<string>"],
"second": ["<string>"]
},
"buyer": {
"group_tag": ["<string>"],
"persona_tag": ["<string>"]
},
"ecom": {
"avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"brand_avg_gmv": {
"min": 500000000000,
"max": 500000000000
},
"atv": {
"min": 500000000000,
"max": 500000000000
}
},
"live": {
"has_plan": True,
"plan_days": ["<string>"],
"avg_viewer": {
"min": 500000000000,
"max": 500000000000
},
"max_online": {
"min": 500000000000,
"max": 500000000000
}
},
"fans": {
"count": {
"min": 500000000000,
"max": 500000000000
},
"consumption": []
},
"flags": {
"actively_seeking": True,
"high_reply_rate": True,
"contact_visible": True,
"cooperated_before": True,
"following": True,
"follower": True,
"live_potential_high": True,
"daily_buyer": True,
"is_star": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
page_num: 1,
page_size: 20,
seed: 0,
nick_name: '李',
category: {first: ['<string>'], second: ['<string>']},
buyer: {group_tag: ['<string>'], persona_tag: ['<string>']},
ecom: {
avg_gmv: {min: 500000000000, max: 500000000000},
brand_avg_gmv: {min: 500000000000, max: 500000000000},
atv: {min: 500000000000, max: 500000000000}
},
live: {
has_plan: true,
plan_days: ['<string>'],
avg_viewer: {min: 500000000000, max: 500000000000},
max_online: {min: 500000000000, max: 500000000000}
},
fans: {count: {min: 500000000000, max: 500000000000}, consumption: []},
flags: {
actively_seeking: true,
high_reply_rate: true,
contact_visible: true,
cooperated_before: true,
following: true,
follower: true,
live_potential_high: true,
daily_buyer: true,
is_star: true
}
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page_num' => 1,
'page_size' => 20,
'seed' => 0,
'nick_name' => '李',
'category' => [
'first' => [
'<string>'
],
'second' => [
'<string>'
]
],
'buyer' => [
'group_tag' => [
'<string>'
],
'persona_tag' => [
'<string>'
]
],
'ecom' => [
'avg_gmv' => [
'min' => 500000000000,
'max' => 500000000000
],
'brand_avg_gmv' => [
'min' => 500000000000,
'max' => 500000000000
],
'atv' => [
'min' => 500000000000,
'max' => 500000000000
]
],
'live' => [
'has_plan' => true,
'plan_days' => [
'<string>'
],
'avg_viewer' => [
'min' => 500000000000,
'max' => 500000000000
],
'max_online' => [
'min' => 500000000000,
'max' => 500000000000
]
],
'fans' => [
'count' => [
'min' => 500000000000,
'max' => 500000000000
],
'consumption' => [
]
],
'flags' => [
'actively_seeking' => true,
'high_reply_rate' => true,
'contact_visible' => true,
'cooperated_before' => true,
'following' => true,
'follower' => true,
'live_potential_high' => true,
'daily_buyer' => true,
'is_star' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list"
payload := strings.NewReader("{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page_num\": 1,\n \"page_size\": 20,\n \"seed\": 0,\n \"nick_name\": \"李\",\n \"category\": {\n \"first\": [\n \"<string>\"\n ],\n \"second\": [\n \"<string>\"\n ]\n },\n \"buyer\": {\n \"group_tag\": [\n \"<string>\"\n ],\n \"persona_tag\": [\n \"<string>\"\n ]\n },\n \"ecom\": {\n \"avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"brand_avg_gmv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"atv\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"live\": {\n \"has_plan\": true,\n \"plan_days\": [\n \"<string>\"\n ],\n \"avg_viewer\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"max_online\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n }\n },\n \"fans\": {\n \"count\": {\n \"min\": 500000000000,\n \"max\": 500000000000\n },\n \"consumption\": []\n },\n \"flags\": {\n \"actively_seeking\": true,\n \"high_reply_rate\": true,\n \"contact_visible\": true,\n \"cooperated_before\": true,\n \"following\": true,\n \"follower\": true,\n \"live_potential_high\": true,\n \"daily_buyer\": true,\n \"is_star\": true\n }\n}"
response = http.request(request)
puts response.read_bodyPGY live blogger square
Pricing — base $0.029 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body
code is 200.
Response structure is not yet fully documented — refer to the actual API response.
Example
curl -X POST "https://api.aisa.one/apis/v1/tikhub/xiaohongshu/pgy/get_live_blogger_list" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{}' # see request schema below
Authorizations
AIsa API key. Get yours at https://aisa.one
Body
application/json
页码,1-250(上游只放出前 5000 条)/Page, 1-250
Required range:
1 <= x <= 250Example:
1
每页数量,1-20(网页固定 20)/Page size, 1-20
Required range:
1 <= x <= 20Example:
20
翻页种子:首页传 0,之后回传上一页返回的 seed/Paging seed, echo back from previous page
Required range:
x >= 0Example:
0
按博主昵称搜索/Search by nickname
Maximum string length:
50Example:
"李"
合作品类/Category filters
Show child attributes
Show child attributes
买手天团 + 内容人设/Buyer group & persona filters
Show child attributes
Show child attributes
电商转化力/E-commerce conversion filters
Show child attributes
Show child attributes
直播投入度 + 表现力/Live activity & performance filters
Show child attributes
Show child attributes
粉丝购买力/Fans purchasing power filters
Show child attributes
Show child attributes
平台推荐开关/Platform recommendation flags
Show child attributes
Show child attributes
Response
200
Successful response. 以实际调用为准 / Response structure varies; refer to the actual API response.