Get Job
curl --request GET \
--url https://api.supapost.so/jobs/{id}import requests
url = "https://api.supapost.so/jobs/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.supapost.so/jobs/{id}', 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/{id}",
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/{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.supapost.so/jobs/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/jobs/{id}")
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-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "processing",
"result": null,
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:02Z"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"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"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "failed",
"result": null,
"error": "nsfw content detected",
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:04Z"
}
{
"success": false,
"message": "Job not found"
}
Jobs
Get Job
Poll the status of an async job
GET
/
jobs
/
{id}
Get Job
curl --request GET \
--url https://api.supapost.so/jobs/{id}import requests
url = "https://api.supapost.so/jobs/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.supapost.so/jobs/{id}', 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/{id}",
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/{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.supapost.so/jobs/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/jobs/{id}")
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-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "processing",
"result": null,
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:02Z"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"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"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "failed",
"result": null,
"error": "nsfw content detected",
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:04Z"
}
{
"success": false,
"message": "Job not found"
}
Returns the status and (if completed) result of an async job. Use this endpoint to poll jobs created by passing
?async=true to /generate/image or /render.
Authentication
string
Bearer token.
Bearer <api-key-or-jwt>.Path Parameters
string
required
The job ID returned by the
?async=true endpoint.Lifecycle
Jobs progress through these states:pending— queued, not yet picked up by a consumerprocessing— actively generatingcompleted— finished,resultis populatedfailed— something went wrong,erroris populated
status is completed or failed.
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "processing",
"result": null,
"error": null,
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:02Z"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"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"
}
{
"id": "0b1e9a5f-1234-4d8c-b2a0-...",
"type": "image_gen",
"status": "failed",
"result": null,
"error": "nsfw content detected",
"created_at": "2026-04-11T10:00:00Z",
"updated_at": "2026-04-11T10:00:04Z"
}
{
"success": false,
"message": "Job not found"
}
⌘I