POST
/
finetune_list
Get Trained Model List
curl --request POST \
  --url https://modelslab.com/api/v3/finetune_list \
  --header 'Content-Type: application/json' \
  --data '{
  "key": ""
}'
{
  "status": "success",
  "messege": "model list",
  "data": []
}

Request

Send a POST request to below endpoint to obtain a list with model IDs.
curl
--request POST 'https://modelslab.com/api/v3/finetune_list' \

Body

json
{ 
    "key": "your_api_key"
}

Body

application/json
key
string
required

Your API Key used for request authorization

Example:

""

Response

Trained models list retrieved successfully

status
string
Example:

"success"

messege
string
Example:

"model list"

data
string[]

Array of trained model IDs

Example:
[]