Image 2 Image
You can create img2img requests with the following
POST
https://api.thenextleg.io/v2/imagineRequest Body
msg
Your prompt. This can include an image URL as well. You can also include flags such as the --v 5 parameterimg2img Requests
In order to perform img2img requests, you can follow the following syntax in your imagine prompt:Example:
"msg":"<your-image-url> <your-prompt>""msg":"https://some_url_that_isnt_cdn.(Redacted Name).com.png Transformational anime"ref (optional)
You can optionally passref in your command - which can be used useful when using webhooks You might want to do this to pass some simple metadata through to your webhook.webhookOverride (optional)
You can optionally pass webhookOverride that will route a response to a webhook of your choosing.
Please note that using a webhook is completely optional. You are welcome to use the GET Message endpoint to retrieve responses.
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var axios = require('axios');
var data = JSON.stringify({
"msg": "<your-prompt-here>",
"ref": "",
"webhookOverride": ""
});
var config = {
method: 'post',
url: 'https://api.thenextleg.io/v2/imagine',
headers: {
'Authorization': 'Bearer <your-token>',
'Content-Type': 'application/json'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
HTTP Response
200Success
Your response will return a messageId. Use the messageId at the GET Message endpoint to poll for results, or to you can wait for the result to arrive via webhook.
0
1
2
3
4
{
"success": true,
"messageId": "your-message-id",
"createdAt": "2023-04-04T13:07:01.927Z"
}400Invalid Prompt
If you are using the banned word prefilter, you will receive a response 400 for any
0
1
2
3
{
"success": false,
"msg": "Invalid phrase: 'bad-word'"
}Get your progress and retrieve a Message using GET
After receiving your messageId you can use the GET /v2/message/<messageId> in order to retrieve your progress and image.
See the GET /v2/message/<messageId> docs for more information.
Completed Response
The message you receive by using the GET Message endpoint or received via your webhook, will have the following:buttons
A list of buttons you can use. If your slash command has produced an output that produces buttons/interactions, they will appear here
buttonRequestId
Which can be used in a POST /v2/button and in conjunction with button from the list
imageUrl
The URL for your image
imageUrls/Upscales
Instantly Upscaled Image URLS
originatingMessageId
The message ID from your original request
content
A string containing a response from (Redacted Name)
🚧 Note: You should be aware that content will also return messages from (Redacted Name) including:
ALREADY_REQUESTED_UPSCALEYou've already requested an upscale for this image
BOT_TOOK_TOO_LONG_TO_PROCESS_YOUR_COMMAND(Redacted Name) Bot took too long to process your command
APPEAL_ACCEPTEDYour appeal has been accepted
APPEAL_REJECTEDYour appeal has been rejected
BANNED_PROMPTYou can't use this prompt
BLOCKEDThis message has been blocked
BUTTON_NOT_FOUNDButton not found
FAILED_TO_PROCESS_YOUR_COMMAND(Redacted Name) failed to process your command
FAILED_TO_REQUESTFailed to request
IMAGE_BLOCKEDThis image has been blocked
INTERNAL_ERROR(Redacted Name) had an internal error
INVALID_LINKInvalid link
INVALID_PARAMETERInvalid parameter
JOB_ACTION_RESTRICTEDJob action restricted
JOB_QUEUEDJob queued
MODERATION_OUTAGEThere is a content moderator outage
NO_FAST_HOURSYou've ran out of fast hours
PLEASE_SUBSCRIBE_TO_MJ_IN_YOUR_DASHBOARDYou're not subscribed to (Redacted Name)
QUEUE_FULLQueue full
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"createdAt": "2023-04-04T13:07:01.927Z",
"buttons": [
"U1",
"U2",
"U3",
"U4",
"🔄",
"V1",
"V2",
"V3",
"V4"
],
"type": "imagine",
"imageUrl": "your-image-url",
"buttonMessageId": "OtfxNzfMIKBPVE1aP4u4",
"originatingMessageId": "your-message-id",
"content": "your-original-prompt",
"ref": "",
"responseAt": "2023-04-04T13:06:01.927Z"
}.com/ebcd9a30-6358-4c9f-afb3-dfe0c7e967f0/grid_0.webp)