Skip to main content

Base64 to Url Endpoint

Overview

This endpoint allows you to upload image in base64 format and get it in url format

Request

--request POST 'https://modelslab.com/api/v6/image_editing/base64_to_url' \

Make a POST request to https://modelslab.com/api/v6/image_editing/base64_to_url endpoint and pass the required parameters as a request body.

Body Attributes

ParameterDescriptionValues
keyYour API Key used for request authorizationstring
init_imageBase64 format of the image file.base64 string

Example

Body

Body
{   
"key":"api key",
"init_image":"data:image/png;base64, <base64>"
}

Request

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

var raw = JSON.stringify({
"key":"",
"init_image":"data:image/png;base64, <base64>",
});

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

fetch("https://modelslab.com/api/v6/image_editing/base64_to_url", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

{
"status": "success",
"id": 132527681,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/temp/8276289141742819873.png"
]
}