Get an Upscale with an Image Buffer
GET
https://api.thenextleg.io/upscale-img-url?buttonMessageId=<buttonMessageId>&button=<buttonId>
This does not rely on (Redacted Name) for upscaling and will not consume fast GPU time
Parameters
buttonMessageId
Use thebuttonMessageId
returned in a responsebutton
Can be one ofU1
, U2
, U3
, or U4
.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var axios = require('axios');
var config = {
method: 'get',
url = "https://api.thenextleg.io/upscale&buttonMessageId=<buttonMessageId>&button=<buttonId>"
headers: {
'Authorization': 'Bearer <your-token>',
'Content-Type': 'application/json'
},
data : data
};
axios(config)
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});