# Get the status of an instrument Get the status of an instrument. Includes flags to show if the instrument is online, if it is measuring and recording audio, as well as the calibration and SIC status. Requires an API key with the instruments:read scope. Endpoint: GET /control/instruments/{serial}/status Version: 1.0.1 Security: apikey ## Path parameters: - `serial` (string, required) Serial number of the selected instrument Example: "QT123456" ## Response 200 fields (application/json): - `online` (boolean) - `measuring` (boolean) - `calibrationInProgress` (boolean) - `sicInProgress` (boolean) - `lastCalibration` (object) Status of the Calibration - `lastCalibration.time` (string) - `lastCalibration.status` (string) - `lastCalibration.level` (number) - `lastCalibration.offset` (number) - `lastSic` (object) Status of the System Integrity Check (SIC) - `lastSic._500Hz` (number) - `lastSic._1KHz` (number) - `lastSic._8KHz` (number) ## Response 401 fields (application/json): - `error` (string) Error code - `description` (string) Description of the error ## Response 403 fields (application/json): - `error` (string) Error code - `description` (string) Description of the error ## Response 404 fields (application/json): - `error` (string) Error code - `description` (string) Description of the error ## Response 429 fields (application/json): - `error` (string) Error code - `description` (string) Description of the error