Get Generate PPT
curl --request GET \
--url https://api.maxapi.ai/api/ppt/asyncPptInfo \
--header 'token: <token>'import requests
url = "https://api.maxapi.ai/api/ppt/asyncPptInfo"
headers = {"token": "<token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {token: '<token>'}};
fetch('https://api.maxapi.ai/api/ppt/asyncPptInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.maxapi.ai/api/ppt/asyncPptInfo"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("token", "<token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.maxapi.ai/api/ppt/asyncPptInfo")
.header("token", "<token>")
.asString();{
"code": 0,
"data": {
"total": 23,
"current": 1,
"pptxProperty": "xxx"
}
}Get Generate PPT
Use this endpoint to call the provider-compatible get generate ppt operation through MaxAPI.
GET
https://api.maxapi.ai
/
api
/
ppt
/
asyncPptInfo
Get Generate PPT
curl --request GET \
--url https://api.maxapi.ai/api/ppt/asyncPptInfo \
--header 'token: <token>'import requests
url = "https://api.maxapi.ai/api/ppt/asyncPptInfo"
headers = {"token": "<token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {token: '<token>'}};
fetch('https://api.maxapi.ai/api/ppt/asyncPptInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.maxapi.ai/api/ppt/asyncPptInfo"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("token", "<token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.maxapi.ai/api/ppt/asyncPptInfo")
.header("token", "<token>")
.asString();{
"code": 0,
"data": {
"total": 23,
"current": 1,
"pptxProperty": "xxx"
}
}