Generate Image Boost
POST
/api/v1/nova/boost/imagineThe core API to generate your image 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 imagine.
Request
The imagine prompt, you can also include an image URL or other valid parameters in it, same like you using Midjourney in Discord.
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
{
"prompt": "string",
"ref": "string",
"webhookOverride": "YOUR_BACKEND_API_ENDPOINT",
"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"
}