MyZSK API

The MyZSK API is a read-only REST interface that allows for the retrieval of embroidery data, machine statuses, and analytics from the MyZSK platform. It is designed for the programmatic analysis of production, thread breaks, shifts, and operators.

List operators

GET /operators

Returns all operators configured for the authenticated company. The IDs returned here can be used as operatorId in the /reports/operator-overview endpoint.

Authentication

Requires the X-API-Key header.

Query parameters

None.

Response (200 OK)

FieldTypeDescription
data[].idintegerOperator identifier.
data[].namestringOperator name (e.g. "Max Mustermann").

Example response

{
  "data": [
    { "id": 1, "name": "Max Mustermann" },
    { "id": 2, "name": "Erika Beispiel" }
  ]
}

Example

curl -H "X-API-Key: $MYZSK_API_KEY" \
     "https://my.zsk.de/customer-api/operators"