Fetch clean, structured content for a URL.
curl --request POST \
--url https://api.aisa.one/apis/v1/byteplus/fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Url": "https://example.com"
}
'import requests
url = "https://api.aisa.one/apis/v1/byteplus/fetch"
payload = { "Url": "https://example.com" }
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: 'https://example.com'})
};
fetch('https://api.aisa.one/apis/v1/byteplus/fetch', 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/byteplus/fetch",
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' => 'https://example.com'
]),
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/byteplus/fetch"
payload := strings.NewReader("{\n \"Url\": \"https://example.com\"\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/byteplus/fetch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"Url\": \"https://example.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/byteplus/fetch")
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\": \"https://example.com\"\n}"
response = http.request(request)
puts response.read_body{
"ResponseMetadata": {
"RequestId": "20260904155514D7EA140BFD77348BC3FC",
"Action": "",
"Version": "",
"Service": "",
"Region": ""
},
"Result": {
"Data": {
"StatusCode": 200,
"Url": "https://example.com",
"Title": "Example Domain",
"PublishTime": 0,
"ContentText": "This domain is for use in documentation examples without needing permission. Avoid use in operations.\nLearn more"
},
"LogId": "20260904155514D7EA140BFD77348BC3FC"
}
}Search API
BytePlus Fetch
Fetch a URL and return clean, structured page content — title, body text, and publish time.
POST
https://api.aisa.one/apis/v1
/
byteplus
/
fetch
Fetch clean, structured content for a URL.
curl --request POST \
--url https://api.aisa.one/apis/v1/byteplus/fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Url": "https://example.com"
}
'import requests
url = "https://api.aisa.one/apis/v1/byteplus/fetch"
payload = { "Url": "https://example.com" }
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: 'https://example.com'})
};
fetch('https://api.aisa.one/apis/v1/byteplus/fetch', 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/byteplus/fetch",
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' => 'https://example.com'
]),
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/byteplus/fetch"
payload := strings.NewReader("{\n \"Url\": \"https://example.com\"\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/byteplus/fetch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"Url\": \"https://example.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/byteplus/fetch")
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\": \"https://example.com\"\n}"
response = http.request(request)
puts response.read_body{
"ResponseMetadata": {
"RequestId": "20260904155514D7EA140BFD77348BC3FC",
"Action": "",
"Version": "",
"Service": "",
"Region": ""
},
"Result": {
"Data": {
"StatusCode": 200,
"Url": "https://example.com",
"Title": "Example Domain",
"PublishTime": 0,
"ContentText": "This domain is for use in documentation examples without needing permission. Avoid use in operations.\nLearn more"
},
"LogId": "20260904155514D7EA140BFD77348BC3FC"
}
}Fetch a single URL and get back clean, structured page content under
Result.Data — Title, ContentText (clean body text), PublishTime (Unix seconds), plus StatusCode and Url. Url is required. The response wraps ResponseMetadata.RequestId and a Result object holding Data and LogId. Billed a flat $0.00088 per successful call; failed requests are not charged. Use this to extract full page content for URLs you already have — typically pairing it with post_byteplus_web_search results to turn a list of links into readable content for RAG or analysis.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The URL to fetch. Required.
Example:
"https://example.com"