You can generate Midjourney V7 images straight from a REST call through the MiniMax API v1 on useapi.net — no Discord bot, no /imagine, just POST images/create with model="midjourney-v7". Generation runs through MiniMax (Hailuo) rather than Midjourney’s own Discord, so there are no Midjourney subscription or Discord account bans to worry about.

How it works

  • Send your prompt to POST images/create with model="midjourney-v7".
  • Pick the frame with the aspectRatio parameter — auto (default), 21:9, 16:9, 5:4, 4:3, 3:2, 1:1, 2:3, 3:4, 4:5, or 9:16.
  • Optionally guide the look with up to 14 image references. Upload each one with POST /files, then pass the returned fileID as referenceFileId1referenceFileId14.
  • Every request returns exactly 4 images (the quantity parameter is ignored for this model), so each call gives you a full Midjourney-style grid to choose from.
  • The call responds with an imageIds array. Poll GET images/imageId until status is 2 (completed) and read downloadURL for the clean, non-watermarked image (paid accounts) or videoURL for the watermarked fallback.

No -- flags — prose and image references only

MiniMax’s Midjourney V7 does not understand native Midjourney flags. Tokens such as --ar, --s, --style, --sref, --no, and :: weights are not parsed — leaving them in your prompt just feeds literal text to the model. Everything is plain natural-language prose, and the two levers you have are the prompt itself and image references. Anything a flag used to control goes through an API parameter instead — aspect ratio via aspectRatio, reference imagery via referenceFileId114.

Pricing — single generation on Pro and Master

Midjourney V7 costs 3 credits per image, and every request always produces 4 images, so one generation is 12 credits.

Plan Monthly $/credit Per generation (4 images, 12 cr)
Pro $34.99 $0.00778 ~$0.093
Master $79.99 $0.00762 ~$0.091

Master has the lowest cost per credit of any plan. See the Credits estimator for every model and the MiniMax API overview for the full plan and per-model breakdown.


Example 1: Cinematic street — 21:9

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="A lone figure in a long charcoal trench coat stands at a rain-soaked city intersection at 3 a.m., sodium streetlights throwing pools of amber across wet asphalt, neon signs bleeding reflections into the puddles, thin fog drifting through the frame. Anamorphic widescreen, teal shadows and warm amber highlights, shot on Arri Alexa with a vintage anamorphic lens, shallow depth of field, photoreal cinematic color grade."' \
--form 'aspectRatio="21:9"'

Example 2: Epic fantasy dragon — 16:9

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="A titanic ancient dragon with iridescent storm-grey scales and wings spanning the sky descends through roiling thunderclouds toward a besieged cliffside citadel, lightning forking around its horns, firelight glowing through the rain, knights and banners tiny on the battlements below, immense scale and dread, epic fantasy concept art in the style of Frank Frazetta and Weta Workshop, hyper-detailed, cinematic, photoreal."' \
--form 'aspectRatio="16:9"'

Example 3: Erupting volcano — 21:9

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="An epic nocturnal vista of an erupting volcano, rivers of molten lava carving glowing veins down black mountainsides into a steaming ocean, a towering ash plume lit from within, aurora and a field of stars overhead, a lone eagle silhouetted against the firelight, monumental raw power, National Geographic photography shot on Phase One medium format, ultra-detailed, cinematic, 8K."' \
--form 'aspectRatio="21:9"'

Example 4: Image reference — warrior queen — 2:3

Upload a reference photo, then transform the person while keeping their face and features.

Reference (referenceFileId1):

Result:

Show the API calls

Step 1 — upload the reference image with POST /files. The response returns a fileID:

curl --location 'https://api.useapi.net/v1/minimax/files/' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: image/jpeg' \
--data-binary '@lady-dressed-up-staris.jpg'

Step 2 — generate, passing the returned fileID as referenceFileId1:

curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Transform this woman into an epic warrior queen — keep her exact face and features — clad in ornate silver-and-gold filigree armor and a flowing crimson cloak, standing atop a windswept cliff above a vast army and a burning ancient city at dusk, storm clouds and embers swirling, dramatic god-rays breaking through, monumental cinematic scale, hyper-detailed, photoreal, epic blockbuster film-poster style."' \
--form 'aspectRatio="2:3"' \
--form 'referenceFileId1="user:…-minimax:…-file:…"'

Example 5: Image reference — film-noir femme fatale — 4:5

Same uploaded reference as Example 4 — one fileID, many looks.

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Transform this exact woman into the femme fatale of a 1940s film-noir — keep her exact face and likeness unchanged. Black-and-white cinematic still, dramatic venetian-blind shadows striping her face, glamorous satin gown and elbow gloves, curling cigarette smoke, smoky jazz-club backdrop, hard chiaroscuro key light, deep contrast, classic Hollywood glamour, 35mm grain."' \
--form 'aspectRatio="4:5"' \
--form 'referenceFileId1="user:…-minimax:…-file:…"'

Example 6: Food hero — omakase sushi — 3:2

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Elegant minimalist food photograph of a premium omakase sushi platter — glistening nigiri of salmon, tuna and uni, perfectly pressed rice, a brush of glaze, garnished with microgreens and edible gold leaf, on a black slate stone, soft directional light, refined negative space, ultra-sharp, fine-dining advertising, macro detail."' \
--form 'aspectRatio="3:2"'

Example 7: Food hero — gourmet cheeseburger — 4:5

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Epic commercial food photograph of the ultimate gourmet cheeseburger — toasted brioche sesame bun, thick flame-grilled patty, molten cheddar dripping down the sides, crisp lettuce, ripe tomato, caramelized onions, on a dark slate board, dramatic rim-lit studio lighting, rising steam, shallow depth of field, glistening textures, hyper-detailed advertising hero shot, 50mm macro."' \
--form 'aspectRatio="4:5"'

Example 8: Food hero — molten chocolate lava cake — 4:5

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Decadent fine-dining food photograph of a molten chocolate lava cake — dark chocolate oozing from the center onto a white plate, a dusting of powdered sugar, fresh raspberries, a quenelle of vanilla ice cream, mint, glossy chocolate-sauce art, dramatic restaurant lighting, rich and indulgent, hyper-detailed macro, Michelin plating."' \
--form 'aspectRatio="4:5"'

Example 9: Food hero — weekend brunch flat-lay — 1:1

Show the API call
curl --location 'https://api.useapi.net/v1/minimax/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="midjourney-v7"' \
--form 'prompt="Bright top-down flat-lay of the perfect weekend brunch — a stack of fluffy pancakes with dripping maple syrup and melting butter, fresh berries, crispy bacon, golden croissants, a latte with leaf art, fresh orange juice, on a marble table, scattered crumbs, airy natural morning light, vibrant, hyper-detailed, food-blogger aesthetic."' \
--form 'aspectRatio="1:1"'

Prefer the anime look? Swap model="midjourney-v7" for model="midjourney-niji7" — same flag-free prose, same 4-image grid, same pricing. See POST images/create for the full parameter reference, and Setup MiniMax to connect an account.