Skip to main content
POST
/
v1
/
midjourney
/
generations
/
remix-strong
curl --request POST \
  --url https://api.apimart.ai/v1/midjourney/generations/remix-strong \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "task_id": "task_<v8_imagine_id>",
    "index": 1,
    "speed": "fast"
  }'
{
  "code": 200,
  "data": [
    {
      "status": "submitted",
      "task_id": "task_01KV52C0TEJSYZMCG0NCS4YWKK"
    }
  ]
}
curl --request POST \
  --url https://api.apimart.ai/v1/midjourney/generations/remix-strong \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "task_id": "task_<v8_imagine_id>",
    "index": 1,
    "speed": "fast"
  }'
{
  "code": 200,
  "data": [
    {
      "status": "submitted",
      "task_id": "task_01KV52C0TEJSYZMCG0NCS4YWKK"
    }
  ]
}
The v8 panel’s “reshape” — regenerates the parent image and can change the prompt. Only available for v8 / v8.1 parent tasks; for v7 / v6 parents use Variation / High Variation instead.
POST /v1/midjourney/generations/remix-strong
POST /v1/midjourney/generations/remix-subtle
The v8 panel removed U1-U4 / pan / zoom / outpaint / inpaint. Replacements: variation → Variation / High Variation; reshape → this endpoint; regenerate → Reroll.
ItemValue
actionREMIX_STRONG / REMIX_SUBTLE
Billingmidjourney@remix_strong[-speed] / midjourney@remix_subtle[-speed]
Requiredtask_id + index

Parameters

FieldTypeRequiredDefaultNotes
task_idstringYesParent task (v8 / v8.1 imagine SUCCESS)
indexintYesWhich parent tile to reshape (14)
promptstringNo(inherits parent)New prompt for the reshape; if empty, uses the parent’s prompt
speedstringNorelaxrelax / fast / turbo

Strength comparison

EndpointopChange amountAnalogy
/remix-strongremixStrongLarge change, composition / style may shiftLike High Variation (strong)
/remix-subtleremixSubtleSmall change, keeps subject / toneLike Variation (subtle)

Request example

Strong reshape:
{
  "task_id": "task_<v8_imagine_id>",
  "index": 1,
  "speed": "fast"
}
A custom prompt is passed through and can change the style / add details.

Response

Submission returns a new local task_id; poll GET /v1/tasks/{task_id}, and on SUCCESS it includes 4 reshaped images.

Notes