Skip to main content

Get Public Models List

Overview

This endpoint returns a list of all the public models available.

This endpoint returns an array with the IDs of the public models and information about them: status, name, description, etc.

Request

--request POST 'https://modelslab.com/api/v4/dreambooth/model_data_list' \

Send a POST request to https://modelslab.com/api/v4/dreambooth/model_data_list endpoint to obtain a list with the available public models and their 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://modelslab.com/api/v4/dreambooth/model_data_list", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

The example response below is truncated after the initial 3 model entries; the list is too long to show it completely.


{
"current_page": 1,
"data": [
{
"model_id": "freddie1970supdated",
"status": "model_ready",
"created_at": "2023-12-20T13:18:34.000000Z",
"instance_prompt": null,
"api_calls": "995",
"model_category": "voice_cloning",
"model_name": "Freddie1970supdated",
"is_nsfw": "no",
"featured": "no",
"description": null,
"screenshots": "https://assets.modelslab.ai/audio/Thumbnail1024/freddie1970supdated.png",
"model_subcategory": null,
"model_format": null,
"feature": "Audiogen"
},
{
"model_id": "baekhyunmodel",
"status": "model_ready",
"created_at": "2023-12-20T13:18:35.000000Z",
"instance_prompt": null,
"api_calls": "994",
"model_category": "voice_cloning",
"model_name": "Baekhyunmodel",
"is_nsfw": "no",
"featured": "no",
"description": null,
"screenshots": "https://assets.modelslab.ai/audio/Thumbnail1024/baekhyunmodel.png",
"model_subcategory": null,
"model_format": null,
"feature": "Audiogen"
},
{
"model_id": "jihyostrong",
"status": "model_ready",
"created_at": "2023-12-20T13:18:33.000000Z",
"instance_prompt": null,
"api_calls": "986",
"model_category": "voice_cloning",
"model_name": "Jihyostrong",
"is_nsfw": "no",
"featured": "no",
"description": null,
"screenshots": "https://assets.modelslab.ai/audio/Thumbnail1024/jihyostrong.png",
"model_subcategory": null,
"model_format": null,
"feature": "Audiogen"
},
{
"model_id": "senko-san",
"status": "model_ready",
"created_at": "2023-12-20T13:18:32.000000Z",
"instance_prompt": null,
"api_calls": "983",
"model_category": "voice_cloning",
"model_name": "Senko San",
"is_nsfw": "no",
"featured": "no",
"description": null,
"screenshots": "https://assets.modelslab.ai/audio/Thumbnail1024/senko-san.png",
"model_subcategory": null,
"model_format": null,
"feature": "Audiogen"
}
...
],
"first_page_url": "https://modelslab.com/api/v4/dreambooth/model_data_list?page=1",
"from": 1,
"last_page": 41,
"last_page_url": "https://modelslab.com/api/v4/dreambooth/model_data_list?page=41",
"next_page_url": "https://modelslab.com/api/v4/dreambooth/model_data_list?page=2",
"path": "https://modelslab.com/api/v4/dreambooth/model_data_list",
"per_page": 30,
"prev_page_url": null,
"to": 30,
"total": 1215
}