Get WeChat Channels Video Detail
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"object_id": "14941130915890399732",
"export_id": "",
"object_nonce_id": "",
"share_url": "",
"raw": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail"
payload = {
"object_id": "14941130915890399732",
"export_id": "",
"object_nonce_id": "",
"share_url": "",
"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({
object_id: '14941130915890399732',
export_id: '',
object_nonce_id: '',
share_url: '',
raw: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail', 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_channels/v2/fetch_video_detail",
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([
'object_id' => '14941130915890399732',
'export_id' => '',
'object_nonce_id' => '',
'share_url' => '',
'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_channels/v2/fetch_video_detail"
payload := strings.NewReader("{\n \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\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_channels/v2/fetch_video_detail")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\n \"raw\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail")
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 \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\n \"raw\": true\n}"
response = http.request(request)
puts response.read_bodyExtended
Get WeChat Channels Video Detail
Get WeChat Channels Video Detail
POST
/
tikhub
/
wechat_channels
/
v2
/
fetch_video_detail
Get WeChat Channels Video Detail
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"object_id": "14941130915890399732",
"export_id": "",
"object_nonce_id": "",
"share_url": "",
"raw": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail"
payload = {
"object_id": "14941130915890399732",
"export_id": "",
"object_nonce_id": "",
"share_url": "",
"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({
object_id: '14941130915890399732',
export_id: '',
object_nonce_id: '',
share_url: '',
raw: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail', 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_channels/v2/fetch_video_detail",
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([
'object_id' => '14941130915890399732',
'export_id' => '',
'object_nonce_id' => '',
'share_url' => '',
'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_channels/v2/fetch_video_detail"
payload := strings.NewReader("{\n \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\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_channels/v2/fetch_video_detail")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\n \"raw\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/wechat_channels/v2/fetch_video_detail")
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 \"object_id\": \"14941130915890399732\",\n \"export_id\": \"\",\n \"object_nonce_id\": \"\",\n \"share_url\": \"\",\n \"raw\": true\n}"
response = http.request(request)
puts response.read_bodyGet WeChat Channels Video Detail
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_channels/v2/fetch_video_detail" \
-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
Video objectId (numeric, highest priority
Maximum string length:
32Pattern:
^[0-9]*$Example:
"14941130915890399732"
expires soon
Maximum string length:
2048Pattern:
^(export/.+)?$Optional objectNonceId (numeric, improves hit rate
Maximum string length:
32Pattern:
^[0-9]*$…), used only when object_id and export_id are empty
Maximum string length:
256Pattern:
^(https?://weixin\.qq\.com/sph/[A-Za-z0-9]+/?)?$True=raw response; False=simplified parsed structure (recommended for media download
Response
200
Successful response. Response structure varies; refer to the actual API response.