Get WeChat MP Comment Replies
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd",
"content_id": "12109128638545265979",
"offset": 0,
"comment_id": "<string>",
"raw": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies"
payload = {
"url": "http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd",
"content_id": "12109128638545265979",
"offset": 0,
"comment_id": "<string>",
"raw": 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({
url: 'http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd',
content_id: '12109128638545265979',
offset: 0,
comment_id: '<string>',
raw: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies', 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/wechat_mp/v2/fetch_comment_replies",
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([
'url' => 'http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd',
'content_id' => '12109128638545265979',
'offset' => 0,
'comment_id' => '<string>',
'raw' => 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/wechat_mp/v2/fetch_comment_replies"
payload := strings.NewReader("{\n \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\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/wechat_mp/v2/fetch_comment_replies")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies")
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 \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\n}"
response = http.request(request)
puts response.read_bodyExtended
Get WeChat MP Comment Replies
Get WeChat MP Comment Replies
POST
/
tikhub
/
wechat_mp
/
v2
/
fetch_comment_replies
Get WeChat MP Comment Replies
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd",
"content_id": "12109128638545265979",
"offset": 0,
"comment_id": "<string>",
"raw": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies"
payload = {
"url": "http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd",
"content_id": "12109128638545265979",
"offset": 0,
"comment_id": "<string>",
"raw": 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({
url: 'http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd',
content_id: '12109128638545265979',
offset: 0,
comment_id: '<string>',
raw: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies', 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/wechat_mp/v2/fetch_comment_replies",
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([
'url' => 'http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd',
'content_id' => '12109128638545265979',
'offset' => 0,
'comment_id' => '<string>',
'raw' => 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/wechat_mp/v2/fetch_comment_replies"
payload := strings.NewReader("{\n \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\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/wechat_mp/v2/fetch_comment_replies")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/wechat_mp/v2/fetch_comment_replies")
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 \"url\": \"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd\",\n \"content_id\": \"12109128638545265979\",\n \"offset\": 0,\n \"comment_id\": \"<string>\",\n \"raw\": true\n}"
response = http.request(request)
puts response.read_bodyGet WeChat MP Comment Replies
Pricing — base $0.0145 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/wechat_mp/v2/fetch_comment_replies" \
-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
…
Maximum string length:
2048Pattern:
^https?://mp\.weixin\.qq\.com/s([/?].+)?$Example:
"http://mp.weixin.qq.com/s?__biz=Mzk3NTA0MzM5NA==&mid=2247483745&idx=1&sn=3f34e768cf457a501038991ed30be1f4#rd"
content_id (numeric) of the target first-level comment; defaults to the first comment that has replies
Maximum string length:
32Pattern:
^[0-9]*$Example:
"12109128638545265979"
Reply pagination offset, 0 for first page; pass next_offset from the previous response when has_more=true
Required range:
x >= 0Article comment id (optional, performance shortcut): when omitted, upstream must fetch and parse the whole article HTML to obtain it, which accounts for about half of this endpoint's latency
Maximum string length:
32Pattern:
^[0-9]*$True=raw response; False=simplified parsed structure
Response
200
Successful response. Response structure varies; refer to the actual API response.