Submit Blend Task
Official Documentation: https://docs.midjourney.com/hc/en-us/articles/32635189884557-Blend-Images-on-Discord
Endpoint
POST http://v98store.com/mj/submit/blend cURL Command
curl -X POST 'http://v98store.com/mj/submit/blend' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{ "botType": "MID_JOURNEY", "base64Array": [ "data:image/png;base64,xxx1", "data:image/png;base64,xxx2" ], "dimensions": "SQUARE", "notifyHook": "", "state": "" }' Parameters
| Name | In | Description | Required |
|---|---|---|---|
| Authorization | header | No |
Request Body
Example
{
"botType": "MID_JOURNEY",
"base64Array": [
"data:image/png;base64,xxx1",
"data:image/png;base64,xxx2"
],
"dimensions": "SQUARE",
"notifyHook": "",
"state": ""
} Responses
200 -
Example
{
"created": 1589478378,
"data": [
{
"url": "https://..."
},
{
"url": "https://..."
}
]
}