/
/ComfyUI API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h ago · Updated 3w ago
feedback1
file19
  • getList user assets
  • postUpload a new asset
  • getGet asset details
  • putUpdate asset metadata
  • deleteDelete asset
  • putUpdate asset tags
  • postAdd tags to asset
  • deleteRemove tags from asset
  • postCreate asset reference from existing hash
  • headCheck if asset exists by hash
  • getGet tag histogram for filtered assets
  • getGet available model folders
  • getGet models in a specific folder
  • getGet related mask layer files
  • getList all tags
  • postUpload an image file
  • postUpload a mask image
  • getQuery VHS video metadata
  • getView a file
job1
node4
queue3
settings4
system2
task2
user7
workflow11
workflows11
  • postMark assets whose backing files no longer exist on disk
  • postTrigger asset scan/seed from filesystem
  • postCancel an in-progress asset scan
  • getGet asset scan progress
  • getList available embedding names
  • postFree GPU memory and/or unload models
  • getGet internationalisation translation strings
  • getGet configured folder paths
  • getGet server logs as text
  • getGet raw structured log entries
  • patchSubscribe or unsubscribe a WebSocket client to log streaming
file

Get available model folders

Returns a list of model folders available in the system. This is an experimental endpoint that replaces the legacy /models endpoint.

get/api/experiment/models

Response

Success - List of model folders

foldersstring[] required

List of paths where models of this type are stored

namestring required

The name of the model folder

Example response

[
  {
    "folders": [
      "checkpoints"
    ],
    "name": "checkpoints"
  }
]

Changes