REST API

Orders, printers and filament stock — read, and update order status / deduct spool weight.

Search documentation

Jump to a section

Order endpoints

GET/print-jobs

Order list

Paginated list of the account's orders, sorted by creation date.

{
  "items": [
    {
      "id": "b6b6c8b0-...",
      "model_name": "Кронштейн",
      "quantity_pieces": 4,
      "material_name": "PETG",
      "color_hex": "#000000",
      "material_grams": 86.0,
      "print_hours": 3.5,
      "due_date": "2026-09-01",
      "order_notes": "",
      "workflow_status": "confirmed",
      "printer_id": null,
      "printer_name": null
    }
  ],
  "total": 1,
  "page": 1,
  "per_page": 50
}

The real response has more fields (cost, discounts, customer, etc.) — only the ones needed for HA integration are shown here. The full set is the same as in the order's web UI.

GET/print-jobs/{id}

Single order

Same structure as the list item above, for a specific id.

GET /print-jobs/b6b6c8b0-... → 200
PUT/print-jobs/{id}

Update status (or other fields)

Send only the fields you're changing — the rest will remain unchanged.

PUT /print-jobs/b6b6c8b0-...
Content-Type: application/json

{ "workflow_status": "assigned" }

A workflow_status value that isn’t in the table below (typo, outdated name) will silently roll the order back to “Negotiation” — the server won’t return an error. Double-check against the status list when sending.

Order statuses

ValueNameWhen to set it
negotiationNegotiationOrder created, terms are still being discussed
confirmedConfirmedCustomer confirmed, ready to print
assignedPrinter assignedHA has assigned a specific printer/spool to the order
printingPrintingPrint is running on the printer
print_errorPrint errorKlipper/Moonraker reported a print error
deliveryDeliveryPrint is ready and on its way to the customer
doneDoneOrder completed
cancelledCancelledOrder cancelled
closedClosedArchived status, hidden from the main list

Printer endpoints

Read-only — the farm’s printer list and a single printer’s data. Useful for matching an order’s printer_id to a real device, or showing its name/technology in an external system.

GET/printers

Printer list

All printers on the account, including those grouped into farms.

{
  "items": [
    {
      "id": "3f2a9c10-...",
      "name": "Bambu Lab P1S",
      "internal_name": "Ферма 1 / принтер 3",
      "model": "P1S",
      "technology": "fdm",
      "group_id": "a1b2c3d4-...",
      "is_favorite": false,
      "sort_order": 2
    }
  ],
  "total": 1,
  "page": 1,
  "per_page": 50
}

The real response has more fields (hours run, cost, internal Bambu/Anycubic Cloud bindings, monitoring agent token) — they're not needed for external automation and aren't shown here.

GET/printers/{id}

Single printer

Same structure as the list item above, for a specific id.

Filament endpoints

Read the material inventory catalog, and deduct weight from a spool as it's used — enough to wire up live tracking from Klipper/Moonraker, Home Assistant or n8n, the same idea as Spoolman's spool-weight endpoint.

GET/filaments

Filament list

All items in the account's material inventory.

{
  "items": [
    {
      "id": "7c4d1e20-...",
      "name": "PETG Black",
      "brand": "eSUN",
      "type_name": "PETG",
      "colors": ["#000000"],
      "is_gradient": false,
      "spool_weight_grams": 1000.0,
      "used_grams": 340.0,
      "spool_count": 2,
      "low_stock_threshold_grams": 150.0
    }
  ],
  "total": 1,
  "page": 1,
  "per_page": 50
}

The spool price (spool_price_rub) is also in the response, but isn’t needed for farm automation and isn’t shown here.

GET/filaments/{id}

Single filament

Same structure as the list item above, for a specific id.

POST/filaments/{id}/consume

Deduct spool weight

Deducts grams from the spool (FIFO across batches) and returns the updated filament. Use the same filament id as the field above.

Questions about the integration — use 3D Print Pricing's regular support.Contact support
REST APIWEBHOOKSHOME ASSISTANTDISCORDSLACKN8NKLIPPER
REST APIWEBHOOKSHOME ASSISTANTDISCORDSLACKN8NKLIPPER

© 2026 · 3DPP API · v9.5.0 · 16+

Ivan Maksim Andreyevich · Self-employed (NPD) · Taxpayer ID (INN) 524308881820 · print.calculator.3d@gmail.com