Skip to main content
GET
/
jobs
List print jobs
curl --request GET \
  --url https://api.autoprintfarm.com/public/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "status": "<string>",
      "printer_id": "<string>",
      "product_id": "<string>",
      "product_sku_id": "<string>",
      "product_name": "<string>",
      "file_name": "<string>",
      "number_of_units": 123,
      "color": "<string>",
      "filament_type": "<string>",
      "material_type": "<string>",
      "progress_percentage": 123,
      "estimated_print_time_minutes": 123,
      "actual_print_time_minutes": 123,
      "failure_reason": "<string>",
      "time_submitted": "<string>",
      "time_started": "<string>",
      "time_completed": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "meta": {
    "limit": 123,
    "offset": 123,
    "count": 123
  }
}

Authorizations

Authorization
string
header
required

API keys are minted in the AutoPrintFarm web app under Settings → API Keys. Send as Authorization: Bearer apf_live_.... Keys are shown exactly once at creation and can be revoked at any time.

Query Parameters

status
string

Filter by job status (e.g. queued, printing, completed)

limit
integer
default:50

Maximum number of rows to return (1-100)

Required range: 1 <= x <= 100
offset
integer | null
default:0

Number of rows to skip for pagination

Required range: x >= 0

Response

Job list

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required