POST
/
enterprise
/
image_editing
/
system_details
Enterprise: System Details Endpoint
curl --request POST \
  --url https://modelslab.com/api/v1/enterprise/image_editing/system_details \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "<string>"
}'
{
  "status": "success",
  "message": "Operation completed successfully"
}

Request

Send a POST request to below endpoint to get system details.
curl
--request POST 'https://modelslab.com/api/v1/enterprise/image_editing/system_details' \

Body

json
{
    "key": "enterprise_api_key"
}

Body

application/json
key
string
required

Your API key

Response

Success

status
string
Example:

"success"

message
string
Example:

"Operation completed successfully"