Skip to main content
GET
/
jobs
List Jobs
curl --request GET \
  --url https://api.supapost.so/jobs
[
  {
    "id": "0b1e9a5f-...",
    "type": "image_gen",
    "status": "completed",
    "result": {
      "url": "https://cdn.supapost.so/assets/team-uuid/1712000000-generated.jpg",
      "width": 1080,
      "height": 1920,
      "contentType": "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

Authorization
string
Bearer token. Bearer <api-key-or-jwt>.

Query Parameters

type
string
Filter by job type. One of: image_gen, render, publish.
status
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,
      "contentType": "image/jpeg"
    },
    "error": null,
    "created_at": "2026-04-11T10:00:00Z",
    "updated_at": "2026-04-11T10:00:08Z"
  }
]