List Jobs
curl --request GET \
--url https://api.supapost.so/jobsimport requests
url = "https://api.supapost.so/jobs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.supapost.so/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://api.supapost.so/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.supapost.so/jobs"
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.supapost.so/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "0b1e9a5f-...",
"type": "image_gen",
"status": "completed",
"result": {
"url": "https://cdn.supapost.so/assets/team-uuid/1712000000-generated.jpg",
"width": 1080,
"height": 1920,
"content_type": "image/jpeg"
},
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:08Z"
}
]
Jobs
List Jobs
List recent async jobs for your team
GET
/
jobs
List Jobs
curl --request GET \
--url https://api.supapost.so/jobsimport requests
url = "https://api.supapost.so/jobs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.supapost.so/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://api.supapost.so/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.supapost.so/jobs"
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.supapost.so/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "0b1e9a5f-...",
"type": "image_gen",
"status": "completed",
"result": {
"url": "https://cdn.supapost.so/assets/team-uuid/1712000000-generated.jpg",
"width": 1080,
"height": 1920,
"content_type": "image/jpeg"
},
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:08Z"
}
]
Returns the 50 most recent jobs for the authenticated team, ordered by creation time descending.
Authentication
string
Bearer token.
Bearer <api-key-or-jwt>.Query Parameters
string
Filter by job type. One of:
image_gen, render, publish.string
Filter by status. One of:
pending, processing, completed, failed.[
{
"id": "0b1e9a5f-...",
"type": "image_gen",
"status": "completed",
"result": {
"url": "https://cdn.supapost.so/assets/team-uuid/1712000000-generated.jpg",
"width": 1080,
"height": 1920,
"content_type": "image/jpeg"
},
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:08Z"
}
]
⌘I