/
/PrusaLink Web
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 2h ago · Updated 2mo ago
  • getapi version informations
  • getprinter informations
  • getprinter, job and transfer telemetry info
  • getjob info
  • deletestop job
  • putpause job
  • putresume job
  • putcontinue job
  • getstorage info
  • gettransfer info
  • deletestop 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

storage info

Returns info about each available file storage (e.g. SD Card or local storage)

get/api/v1/storage

Response

OK

Example response

{
  "storage_list": [
    {
      "name": "PrusaLink gcodes",
      "path": "/local",
      "print_files": 19216842,
      "system_files": 4242,
      "free_space": 1921681142,
      "total_space": 8589934592,
      "available": true
    }
  ]
}

Changes