Skip to main content

Get Trained Models List

Overview

Stable Diffusion V3 APIs Get Model List endpoint returns a list with all the models that you have created.

This endpoint returns an array with the IDs of the models.

Request

--request POST 'https://stablediffusionapi.com/api/v3/finetune_list' \

Send a POST request to https://stablediffusionapi.com/api/v3/finetune_list endpoint to obtain a list with model IDs.

Attributes

ParameterTypeDescription
keyStringYour API Key used for request authorization

Example

Body

Body Raw
{
"key": ""
}

Request

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
"key": ""
});

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};

fetch("https://stablediffusionapi.com/api/v3/finetune_list", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

{
"status": "success",
"messege": "model list",
"data": []
}