curl --request GET \
--url https://console.spatius.ai/v1/open/video-jobs \
--header 'X-API-Key: <api-key>' \
--header 'X-App-ID: <api-key>'import requests
url = "https://console.spatius.ai/v1/open/video-jobs"
headers = {
"X-App-ID": "<api-key>",
"X-API-Key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-App-ID': '<api-key>', 'X-API-Key': '<api-key>'}};
fetch('https://console.spatius.ai/v1/open/video-jobs', 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://console.spatius.ai/v1/open/video-jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>",
"X-App-ID: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://console.spatius.ai/v1/open/video-jobs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-App-ID", "<api-key>")
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://console.spatius.ai/v1/open/video-jobs")
.header("X-App-ID", "<api-key>")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://console.spatius.ai/v1/open/video-jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-App-ID"] = '<api-key>'
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"jobs": [
{
"id": "6f1e2b3c-9a1d-4e5f-8b0a-2c4d6e8f0a1b",
"status": "succeeded",
"avatarId": "d385dd22-9200-4806-94a0-dce464ca916d",
"name": "Welcome video",
"progress": {
"stage": "completed"
},
"createdAt": "2026-09-12T09:00:00Z",
"updatedAt": "2026-09-12T09:01:00Z",
"completedAt": "2026-09-12T09:01:00Z",
"expiresAt": "2026-09-19T09:00:05Z"
}
],
"pagination": {
"nextPageToken": "",
"totalCount": 1
}
}{
"error": {
"code": "invalid_request",
"message": "Invalid video request or presentation settings.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "forbidden",
"message": "Video API access is not configured.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "Open API rate limit exceeded.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "internal_error",
"message": "An internal error occurred.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "service_unavailable",
"message": "Video generation is unavailable; retry later.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}List Video Jobs
Lists the authenticated account’s jobs, newest first. Results contain summaries; use Get a Video Job for download links. Video reads remain available when creation is disabled, as long as video access remains configured.
curl --request GET \
--url https://console.spatius.ai/v1/open/video-jobs \
--header 'X-API-Key: <api-key>' \
--header 'X-App-ID: <api-key>'import requests
url = "https://console.spatius.ai/v1/open/video-jobs"
headers = {
"X-App-ID": "<api-key>",
"X-API-Key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-App-ID': '<api-key>', 'X-API-Key': '<api-key>'}};
fetch('https://console.spatius.ai/v1/open/video-jobs', 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://console.spatius.ai/v1/open/video-jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>",
"X-App-ID: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://console.spatius.ai/v1/open/video-jobs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-App-ID", "<api-key>")
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://console.spatius.ai/v1/open/video-jobs")
.header("X-App-ID", "<api-key>")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://console.spatius.ai/v1/open/video-jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-App-ID"] = '<api-key>'
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"jobs": [
{
"id": "6f1e2b3c-9a1d-4e5f-8b0a-2c4d6e8f0a1b",
"status": "succeeded",
"avatarId": "d385dd22-9200-4806-94a0-dce464ca916d",
"name": "Welcome video",
"progress": {
"stage": "completed"
},
"createdAt": "2026-09-12T09:00:00Z",
"updatedAt": "2026-09-12T09:01:00Z",
"completedAt": "2026-09-12T09:01:00Z",
"expiresAt": "2026-09-19T09:00:05Z"
}
],
"pagination": {
"nextPageToken": "",
"totalCount": 1
}
}{
"error": {
"code": "invalid_request",
"message": "Invalid video request or presentation settings.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "forbidden",
"message": "Video API access is not configured.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "Open API rate limit exceeded.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "internal_error",
"message": "An internal error occurred.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "service_unavailable",
"message": "Video generation is unavailable; retry later.",
"requestId": "b3f0c2d1-4a5b-4c6d-8e9f-0a1b2c3d4e5f"
}
}Authorizations
Your Spatius App ID.
The API key bound to the App ID.
Query Parameters
Maximum number of items to return. Defaults to 20; the maximum is 99. A value above 99 falls back to the default of 20 rather than being capped, so request at most 99.
1 <= x <= 99Opaque token from the previous page's nextPageToken. Omit for the first page. Pass back exactly what the previous response returned rather than constructing a value. A token is only valid for the pagination.pageSize it was issued with; keep that value stable while paging, or start again from the first page.
Optional status filter. Repeat the parameter for multiple states, for example statuses=queued&statuses=processing. Omit to include all states.
New jobs start queued. Successful output becomes expired after its retention deadline. Failed jobs remain failed.
queued, processing, succeeded, failed, expired 
