MidjourneyPaidOperational
Mj Low Variation
API model name: mj_low_variation
Mj Low Variation is Midjourney's image generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16
Qualities: standard
Specifications
- Provider
- Midjourney
- Type
- image generation model
What is Mj Low Variation used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Mj BlendMidjourney · $109.76 / 1MMj High VariationMidjourney · $109.76 / 1MMj ImagineMidjourney · $109.76 / 1MMj ModalMidjourney · $109.76 / 1MMj PanMidjourney · $109.76 / 1MMj RerollMidjourney · $109.76 / 1MMj UploadMidjourney · $1.10 / 1MMj UpscaleMidjourney · $54.88 / 1MMj VariationMidjourney · $109.76 / 1MMj ZoomMidjourney · $109.76 / 1MWanx2.1 T2vAlibabaWhisper 1OpenAI · $39.75 / 1M
Mj Low Variation — frequently asked questions
- How much does Mj Low Variation cost?
- Mj Low Variation is billed per generation rather than per token. See the pricing page for the current rate.
- What can Mj Low Variation do?
- Mj Low Variation is Midjourney's image generation model, accessible through the Api.Airforce API.
- Is Mj Low Variation free to use?
- Mj Low Variation is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Mj Low Variation via the API?
- Mj Low Variation is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID mj_low_variation with your Api.Airforce API key.
- Who makes Mj Low Variation?
- Mj Low Variation is Midjourney's image generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Mj Low Variation via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass mj_low_variation as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mj_low_variation",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="mj_low_variation", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "mj_low_variation", prompt: "a red panda coding" });
console.log(img.data[0].url);