/
/PrusaLink Web
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Updated on 2026-07-17
  • getapi version informations
  • getprinter informations
  • getprinter, job and transfer telemetry info
  • getjob info
  • getstorage info
  • gettransfer info
  • deleteabort transfer
  • getFile or folder metadata
  • putupload file or create folder
  • postStart print of file if there's no print job running
  • deleteDelete a file or folder
  • headfile presence and state check
  • getGet a list of active cameras and its properties
  • putList of cameras in intended order
  • getGet current settings and properties of specific camera
  • postSetup a new camera or fix a broken one
  • deleteDelete a camera
  • getReturn a captured image from the default camera
  • getReturn a captured image from the camera with a given id
  • postMake a snapshot with the camera
  • deleteReset settings of a camera
  • patchSet new settings to a working camera
  • postRegister a camera to Connect
  • deleteUn-register a camera from Connect
  • getRetrieve information about available update of given environment
  • postUpdate given environment

Get current settings and properties of specific camera

get/api/v1/cameras/{id}

Response

OK

namestring

Name of the camera

trigger_scheme'TEN_SEC' | 'THIRTY_SEC' | 'SIXTY_SEC' | 'EACH_LAYER' | 'FIFTH_LAYER' | 'MANUAL'

When the snapshot is taken

capabilitiesstring[]

Example response

{
  "name": "MuadDib_Camera_1",
  "available_resolutions": [
    {
      "width": 640,
      "height": 480
    }
  ],
  "resolution": {
    "width": 640,
    "height": 480
  }
}

Changes