Skip to main content
GET
/
printers
List printers
curl --request GET \
  --url https://api.autoprintfarm.com/public/v1/printers \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "model": "<string>",
      "manufacturer": "<string>",
      "status": "<string>",
      "location": "<string>",
      "nozzle_size": 123,
      "current_color": "<string>",
      "current_color_hex": "<string>",
      "current_filament_type": "<string>",
      "current_build_plate": "<string>",
      "has_ams": true,
      "is_active": true,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

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

is_active
enum<string>

Filter to active (true) or inactive (false) printers

Available options:
true,
false
status
string

Filter by printer status (e.g. idle, printing, error)

location
string

Filter by exact location label

Case-insensitive substring match on printer name

Required string length: 1 - 120

Response

Printer list

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