GLM-5.2 is live — Z.AI's flagship with a 1M-token lossless contextfrom $0.900 per 1M tokens
Does Midjourney Have an API? V8.2 Options Without Discord (2026)
2026/08/01

Does Midjourney Have an API? V8.2 Options Without Discord (2026)

Does Midjourney have an API? Learn the official answer, what V8.2 changes, why account automation is risky, and how to evaluate authorized API options.

No—Midjourney does not offer a general public API. Its official community guidelines say that, except for rare explicitly granted cases, Midjourney does not provide an API or third-party apps and prohibits automated interaction with the service.[1] That answer matters more than any code sample claiming you can call Midjourney V8.2 without Discord.

Midjourney itself now works on the web as well as Discord, so Discord is no longer required for ordinary creation. Programmatic access is different. A gateway may expose a Midjourney-compatible route, but that does not turn it into an official Midjourney API. Before production use, verify that the provider can document authorization and that your workflow complies with the current terms.

TL;DR

  • Midjourney has no general public API. Unauthorized account automation and third-party scripts can lead to blocking.[1]
  • You can use Midjourney without Discord through the official Midjourney website and its Create page.[2]
  • V8.2 launched on July 24, 2026, focusing on aesthetics, image quality, and improved personalization.[3]
  • Do not automate a personal Midjourney account. Browser bots, token reuse, and Discord self-bots are not substitutes for an authorized API.
  • reAPI exposes a separate route labeled Midjourney V8 with V8.2 selection, async tasks, structured parameters, and follow-up operations. It is not the official Midjourney API.
  • For production procurement, request written provenance. Ask who is authorized to provide the route, what happens if upstream access changes, and which terms cover your usage.

What Midjourney V8.2 changed

Midjourney announced V8.2 on July 24, one week before this article. The release focuses on more creative and sophisticated aesthetics, fewer random low-quality outputs, and stronger personalization based on a user's preference profile.[3]

V8.2 follows V8.1, which introduced much faster standard jobs, better prompt adherence, and native 2K HD rendering. Midjourney's version documentation says V8.1 standard jobs were about four to five times faster than earlier versions; V8.2's announcement emphasizes quality and taste rather than another measured speed increase.[4]

VersionMain changeCurrent status
V8.0 AlphaFirst V8 previewLegacy alpha
V8.1Faster generation, stronger prompt detail, native HDSupported
V8.2Aesthetic quality, consistency, personalizationLatest project default

Do not copy V8.1 speed claims onto V8.2 unless Midjourney publishes a separate measurement. The releases have different stated goals.

Official ways to use Midjourney without Discord

The official web app is the compliant answer for creators who simply do not want Discord. Midjourney's getting-started guide directs subscribers to the Create page, where the Imagine bar, settings, image references, editing, and video tools are available.[2]

The official paths are:

  1. Midjourney website. Create images, adjust settings, organize results, edit, and animate from the browser.
  2. Discord bot. Use /imagine, settings commands, and follow-up actions in Discord.
  3. Explicitly authorized access. A limited integration may exist where Midjourney has granted permission, but it should be documented as such.

What is not an official path: logging in with a script, copying an account token, driving Discord through a self-bot, or using headless browser automation against a personal subscription.

Official Midjourney web and Discord paths compared with prohibited account automation and separately authorized API access

Why unofficial Midjourney API tutorials are risky

Many “Midjourney API” tutorials automate the consumer service rather than call a documented vendor endpoint. They may send Discord messages using a user token, scrape task status, or replay private browser requests. The code can work temporarily and still violate the service rules.

The operational risks are concrete:

  • the account may be blocked;
  • private tokens can leak through logs or a hosted script;
  • undocumented endpoints can change without notice;
  • rate limits and billing behavior are not contractual;
  • the provider may disappear when upstream enforcement changes.

An API wrapper is not made safe by looking like REST. Ask what authority sits behind it.

What the reAPI Midjourney V8 route exposes

reAPI currently has a model route named midjourney and a landing page labeled Midjourney V8. The route is asynchronous: submit an image task, receive a task_id, and poll until completion. It exposes V8.2 and V8.1 plus earlier versions, three speed modes, structured equivalents of common Midjourney parameters, and follow-up actions such as upscale, variation, reroll, zoom, pan, and remix.

That is a description of reAPI's product surface, not a claim that Midjourney publishes or endorses the endpoint. Any team using it should verify the provider relationship and acceptable-use basis before relying on it.

The request shape is:

curl https://reapi.ai/api/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "midjourney",
    "prompt": "editorial product photograph, warm daylight, restrained styling",
    "version": "8.2",
    "size": "16:9",
    "speed": "fast"
  }'

The call returns a task rather than final images. Poll:

GET https://reapi.ai/api/v1/tasks/{task_id}

Generation may return up to four images and bills once per request. Exact rates vary by relax, fast, or turbo mode and should be read from the live Midjourney V8 model page.

Parameters developers actually need

JSON fieldMidjourney conceptUse
version--vSelect 8.2, 8.1, or an older model
size--arChoose aspect ratio
speedGPU moderelax, fast, or turbo
stylize--sControl Midjourney's aesthetic influence
chaos--cIncrease variation across the grid
weird--wPush unconventional results
rawRaw modeReduce automatic styling
image_urlsImage promptGuide content and composition
sref / crefStyle / character referenceCarry visual identity across tasks

Start with version, aspect ratio, and speed. Add one advanced control at a time; changing five aesthetic parameters at once makes failures hard to diagnose.

How to evaluate a Midjourney API provider

Before integrating any third-party route, ask seven questions:

  1. Can the provider document authorization to supply Midjourney access?
  2. Does it require your personal Discord or Midjourney credentials?
  3. Are account tokens stored or replayed?
  4. What is the upstream model and version guarantee?
  5. What happens to queued tasks if upstream access is interrupted?
  6. Are generated files retained, and for how long?
  7. Does the contract cover commercial use, privacy, support, and refunds?

Avoid any service that asks for a Discord user token. That is both a security warning and a strong sign the integration is automating a consumer account.

FAQ

Does Midjourney have an official API?

No general public API. Midjourney says it grants only rare explicit exceptions and prohibits unauthorized automation and third-party apps.

Can I use Midjourney without Discord?

Yes. The official Midjourney website supports image creation, settings, editing, organization, and video workflows.

Is Midjourney V8.2 available?

Yes. Midjourney announced V8.2 on July 24, 2026, with improvements to aesthetics, quality consistency, and personalization.

The existence of an endpoint does not answer that. Ask the provider for a documented authorization and review Midjourney's current terms for your use case. Do not automate your personal account.

What is the safest API alternative?

If documented authorization is unavailable, use a model with a first-party public API, such as GPT Image, Imagen, Seedream, FLUX, or another image model whose vendor explicitly supports programmatic access.

Conclusion

So, does Midjourney have an API? Officially, not a general public one. Use the Midjourney website if the goal is simply to work without Discord. For programmatic V8.2 access, treat authorization—not the elegance of the JSON—as the deciding requirement, and never build production automation on a personal Midjourney account.

References

  1. Midjourney. Community Guidelines — unauthorized automation and third-party apps. docs.midjourney.com
  2. Midjourney. Getting Started Guide — official web workflow. docs.midjourney.com
  3. Midjourney. Version 8.2 announcement, July 24, 2026. updates.midjourney.com/version-8-2
  4. Midjourney. Version documentation — V8.1 speed, HD, and compatibility. docs.midjourney.com

Further reading