v36

latestOpenAPI 3.0.3GNU General Public License v3.0raw.githubusercontent.com2026-08-017758212.6 KB
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. Each folder's name is the identifier to pass to /api/experiment/models/{folder}. Once the model_type migration is active the names are model_type folder_names (e.g. ultralytics_bbox); a folder with no folder_name mapping is returned by its directory path.

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"
  }
]