Button Boost
POST
/api/v1/nova/boost/buttonThe API simulates a Upscale button click on the Midjourney channel. A completed image will return an array of buttons which you can subsequently invoke on the image. These buttons are dynamic and a list of buttons you can press are included in every image completion.
In boost mode, which optimized generation speed like CDN uploading and progress handling. The only change is to use the new endpoint, and parameter and reponse are exactly the same to the original button API.
Request
The unique identifier you get from your previous image generation request.
The valid button action for Midjourney. The button value needs be within the "buttons" array in /message endpoint's response. E.g. U1, U2, U3, U4, Upscale (2x), Upscale (4x), Redo Upscale (2x), Redo Upscale (4x), Upscale (Creative), Upscale (Subtle).
The reference metadata which will return as part of the webhook.
The webhook URL which the response will send to, the payload of this webhook is same as our Message endpoint.
If disable CDN uploading which is by default
{
"messageId": "string",
"button": "U1",
"ref": "string",
"webhookOverride": "string",
"disableCdn": false
}
Request samples
Responses
The status of the request.
The messageId of the request, which will be used for querying the progress, sending subsequential actions later, etc.
The timestamp of the job creation.
The error message, if any
{
"success": true,
"messageId": "d15c1541-229a-442b-9873-d3494dede12a",
"createdAt": "2023-08-01T14:03:01.817Z"
}