Enterprise: Get All Models

This endpoint gets the list of all models on your server


--request POST 'https://stablediffusionapi.com/api/v1/enterprise/get_all_models' \

Make a POST request to https://stablediffusionapi.com/api/v1/enterprise/get_all_models endpoint.

How to Video Guide
Click HERE to watch a how to video.

key : Your API Key

Request Body and Example Response

Body Raw
{
 "key": "enterprise_api_key"
}
Example Response

{
"models": [
 {
   "load_data": "01/25/2023 11:52:22",
   "model_id": "hf-model"
 },
 {
   "load_data": "01/25/2023 12:34:16",
   "model_id": "ckpt-model"
 },
 {
   "load_data": "01/25/2023 12:50:48",
   "model_id": "nckpt-model"
 }
],
"status": "success"
}