VeoGet task
curl --request GET \
--url https://api.maxapi.ai/v2/videos/generations/{task_id}import requests
url = "https://api.maxapi.ai/v2/videos/generations/{task_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.maxapi.ai/v2/videos/generations/{task_id}', 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/v2/videos/generations/{task_id}"
req, _ := http.NewRequest("GET", url, nil)
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/v2/videos/generations/{task_id}")
.asString();{
"action": "sora2_video_generation",
"data": null,
"fail_reason": "",
"finish_time": 0,
"platform": "openai",
"progress": "20%",
"start_time": 0,
"status": "QUEUED",
"submit_time": 1761557913,
"task_id": "veo3:1761557912-lI34vCDltN"
}VeoGet task
Use this endpoint to call the provider-compatible veoget task operation through MaxAPI.
GET
https://api.maxapi.ai
/
v2
/
videos
/
generations
/
{task_id}
VeoGet task
curl --request GET \
--url https://api.maxapi.ai/v2/videos/generations/{task_id}import requests
url = "https://api.maxapi.ai/v2/videos/generations/{task_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.maxapi.ai/v2/videos/generations/{task_id}', 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/v2/videos/generations/{task_id}"
req, _ := http.NewRequest("GET", url, nil)
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/v2/videos/generations/{task_id}")
.asString();{
"action": "sora2_video_generation",
"data": null,
"fail_reason": "",
"finish_time": 0,
"platform": "openai",
"progress": "20%",
"start_time": 0,
"status": "QUEUED",
"submit_time": 1761557913,
"task_id": "veo3:1761557912-lI34vCDltN"
}