Enterprise: Verify Model

This endpoint verifies if a particular model exists

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

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

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

key : Your API Key
model_id : The id of model

Request Body and Example Response

Body Raw
{
  "key": "enterprise_api_key",
  "model_id": "ckpt-model"
}
Example Response
{
"status": "success",
"message": "Model exists on server"
}