Explain search results
curl --request POST \
--url https://api.aisa.one/apis/v1/scholar/search/explain \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"search_id": "<string>",
"response_mode": "NON_STREAMING",
"language": "ar",
"detail_level": "MODERATE"
}
'import requests
url = "https://api.aisa.one/apis/v1/scholar/search/explain"
payload = {
"search_id": "<string>",
"response_mode": "NON_STREAMING",
"language": "ar",
"detail_level": "MODERATE"
}
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({
search_id: '<string>',
response_mode: 'NON_STREAMING',
language: 'ar',
detail_level: 'MODERATE'
})
};
fetch('https://api.aisa.one/apis/v1/scholar/search/explain', 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/scholar/search/explain",
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([
'search_id' => '<string>',
'response_mode' => 'NON_STREAMING',
'language' => 'ar',
'detail_level' => 'MODERATE'
]),
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/scholar/search/explain"
payload := strings.NewReader("{\n \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\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/scholar/search/explain")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/scholar/search/explain")
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 \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}Scholar API
Explain Search Results
Explain a result set you already fetched.
POST
https://api.aisa.one/apis/v1
/
scholar
/
search
/
explain
Explain search results
curl --request POST \
--url https://api.aisa.one/apis/v1/scholar/search/explain \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"search_id": "<string>",
"response_mode": "NON_STREAMING",
"language": "ar",
"detail_level": "MODERATE"
}
'import requests
url = "https://api.aisa.one/apis/v1/scholar/search/explain"
payload = {
"search_id": "<string>",
"response_mode": "NON_STREAMING",
"language": "ar",
"detail_level": "MODERATE"
}
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({
search_id: '<string>',
response_mode: 'NON_STREAMING',
language: 'ar',
detail_level: 'MODERATE'
})
};
fetch('https://api.aisa.one/apis/v1/scholar/search/explain', 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/scholar/search/explain",
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([
'search_id' => '<string>',
'response_mode' => 'NON_STREAMING',
'language' => 'ar',
'detail_level' => 'MODERATE'
]),
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/scholar/search/explain"
payload := strings.NewReader("{\n \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\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/scholar/search/explain")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/scholar/search/explain")
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 \"search_id\": \"<string>\",\n \"response_mode\": \"NON_STREAMING\",\n \"language\": \"ar\",\n \"detail_level\": \"MODERATE\"\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}{
"error": "<string>",
"code": 123,
"details": "<string>"
}Explain a result set you already fetched. Unlike the three search endpoints this one takes a JSON body:
search_id (required — the id returned by post_scholar_search_web, post_scholar_search_scholar or post_scholar_search_mixed), plus detail_level (BRIEF / MODERATE / DETAILED), language, and response_mode. ⚠️ Use response_mode: NON_STREAMING. It returns {"message": "…"} as JSON, measured at about 2 KB. The COMPLETE and INCREMENTAL modes emit server-sent events in which each event repeats the whole answer so far — the identical explanation measured 177 KB that way, roughly 90 times larger, and a tool call cannot consume a stream incrementally anyway. It only ever explains an existing search; it cannot run one.
Example
curl -X POST "https://api.aisa.one/apis/v1/scholar/search/explain" \
-H "Authorization: Bearer ${AISA_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"search_id": "search_id",
"response_mode": "NON_STREAMING",
"language": "en",
"detail_level": "BRIEF"
}'
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
ID of the search to explain
Format of the explanation response. COMPLETE and INCREMENTAL stream server-sent events; NON_STREAMING returns a JSON response.
Available options:
COMPLETE, INCREMENTAL, NON_STREAMING Language code for the explanation (e.g., en, zh, ar)
Example:
"ar"
Level of detail in the explanation
Available options:
BRIEF, MODERATE, DETAILED Response
Successful explanation response. COMPLETE/INCREMENTAL stream text/event-stream; NON_STREAMING returns application/json.
JSON explanation response returned when response_mode is NON_STREAMING.
Generated explanation text.