Midjourney 7.0 - Image Generator
Experience the cutting-edge of AI image generation with Midjourney 7.0. This revolutionary model introduces groundbreaking features including omni-reference capabilities, unprecedented image quality, and advanced creative controls. Designed for the most demanding creative professionals and innovative applications.
Endpoint
Request Headers
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Feature type identifier. Must be IMAGE_GENERATOR |
model | string | Yes | AI model identifier. Must be midjourney_7_0 |
promptObject | object | Yes | Configuration object containing all generation parameters |
Prompt Object Parameters
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
prompt | string | Yes | Text description of the image to generate | - |
mode | string | No | Generation speed mode | fast |
n | number | No | Number of images to generate (fixed at 4) | 4 |
negativePrompt | string | No | Text describing what to avoid in the image | - |
isNiji6 | boolean | No | Enable Niji 6 anime style mode | false |
maintainModeration | boolean | No | Enable 1minAI content moderation | true |
aspect_width | number | No | Width aspect ratio (1-7) | 1 |
aspect_height | number | No | Height aspect ratio (1-7) | 1 |
no | string | No | Elements to exclude from the image | - |
image_weight | number | No | Image prompt weight (0.5-2.0) | 1 |
seed | number | No | Random seed for reproducibility (0-4294967295) | Random |
tile | boolean | No | Generate seamless tile patterns | false |
stylize | number | No | Stylization strength (0-1000) | 100 |
chaos | number | No | Variation in results (0-100) | 0 |
weird | number | No | Experimental aesthetic (0-3000) | 0 |
omni_reference | string | No | NEW: Omni-reference image asset path for comprehensive visual guidance | - |
omni_reference_weight | number | No | NEW: Omni-reference influence strength (0.5-2.0) | 1 |
style_reference | string | No | Style reference image asset path | - |
Revolutionary Features in 7.0
🚀 Omni-Reference Technology
- Universal Reference: Single image can influence character, style, composition, and mood simultaneously
- Intelligent Context: AI understands multiple aspects of reference images automatically
- Simplified Workflow: Replace multiple reference types with one comprehensive omni-reference
⚡ Enhanced Capabilities
- Ultra-High Definition: Support for larger output resolutions
- Advanced Prompt Understanding: Better interpretation of complex, nuanced descriptions
- Improved Speed: Faster generation times across all modes
- Superior Consistency: Enhanced character and object consistency across generations
Generation Modes
| Mode | Description | Cost | Generation Time | V7.0 Improvements |
|---|---|---|---|---|
fast | High priority generation | 2x cost | < 45 seconds | 25% faster than V6.1 |
relax | Lower priority generation | 1x cost | 1-8 minutes | More predictable timing |
Supported Aspect Ratios
| Ratio | Width | Height | Best For | V7.0 Enhancement |
|---|---|---|---|---|
| 1:1 | 1 | 1 | Square images, social media | Enhanced detail |
| 4:5 | 4 | 5 | Portrait, Instagram posts | Better composition |
| 2:3 | 2 | 3 | Portrait photography | Improved facial details |
| 4:7 | 4 | 7 | Tall banners, mobile screens | Extended support |
| 5:4 | 5 | 4 | Landscape, traditional photos | Superior landscapes |
| 3:2 | 3 | 2 | Standard landscape photography | Professional quality |
| 7:4 | 7 | 4 | Wide banners, panoramic views | Enhanced panoramics |
Omni-Reference vs Traditional References
Version 7.0 introduces omni_reference which replaces the need for separate character_reference parameters. The AI intelligently extracts character, style, and compositional elements from a single reference image.
Advanced Style Parameters
| Parameter | Range | Description | V7.0 Improvements |
|---|---|---|---|
| Stylize | 0-1000 | Controls artistic interpretation | More sophisticated artistic control |
| Chaos | 0-100 | Adds variation and unpredictability | Smarter variation algorithms |
| Weird | 0-3000 | Experimental aesthetic parameter | More coherent experimental results |
Code Examples
- cURL
- JavaScript
- Python
curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "IMAGE_GENERATOR",
"model": "midjourney_7_0",
"promptObject": {
"prompt": "Futuristic cityscape at sunset, flying cars, neon lights, cyberpunk aesthetic, 8K resolution",
"mode": "fast",
"n": 4,
"isNiji6": false,
"aspect_width": 7,
"aspect_height": 4,
"stylize": 200,
"chaos": 25,
"omni_reference": "development/assets/reference-image.jpg",
"omni_reference_weight": 1.5,
"maintainModeration": true
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'IMAGE_GENERATOR',
model: 'midjourney_7_0',
promptObject: {
prompt: 'Futuristic cityscape at sunset, flying cars, neon lights, cyberpunk aesthetic, 8K resolution',
mode: 'fast',
n: 4,
isNiji6: false,
aspect_width: 7,
aspect_height: 4,
stylize: 200,
chaos: 25,
omni_reference: 'development/assets/reference-image.jpg',
omni_reference_weight: 1.5,
maintainModeration: true
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
data = {
"type": "IMAGE_GENERATOR",
"model": "midjourney_7_0",
"promptObject": {
"prompt": "Futuristic cityscape at sunset, flying cars, neon lights, cyberpunk aesthetic, 8K resolution",
"mode": "fast",
"n": 4,
"isNiji6": False,
"aspect_width": 7,
"aspect_height": 4,
"stylize": 200,
"chaos": 25,
"omni_reference": "development/assets/reference-image.jpg",
"omni_reference_weight": 1.5,
"maintainModeration": True
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
API Playground
https://api.1min.ai/api/featuresDescribe the image you want to generate
Generation speed and cost (V7.0 is 25% faster)
Describe what you want to avoid in the image
Enable anime/manga aesthetic
Choose from supported aspect ratios (V7.0 enhanced)
Universal reference image asset path that influences character, style, and composition
Omni-reference influence strength (0.5-2.0)
Style reference image asset path (can be used alongside omni-reference)
Artistic interpretation strength (0-1000). V7.0 offers more sophisticated control
Variation and unpredictability (0-100). V7.0 uses smarter algorithms
Experimental aesthetic (0-3000). V7.0 produces more coherent results
Image prompt weight relative to text (0.5-2.0)
Random seed for reproducibility (0-4294967295)
Generate seamless tile patterns
1minAI content moderation to prevent policy violations
Generated cURL Command:
curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "IMAGE_GENERATOR",
"model": "midjourney_7_0",
"promptObject": {
"prompt": "Futuristic cityscape at sunset, flying cars, neon lights, cyberpunk aesthetic, 8K resolution",
"mode": "fast",
"n": 4,
"isNiji6": false,
"aspect_width": 1,
"aspect_height": 1,
"stylize": 100,
"chaos": 0,
"maintainModeration": true
}
}'
Response Format
{
"aiRecord": {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"userId": "user-12345",
"teamId": "team-67890",
"teamUser": {
"teamId": "team-67890",
"userId": "user-12345",
"userName": "John Doe",
"userAvatar": "https://example.com/avatar.jpg",
"status": "ACTIVE",
"role": "ADMIN",
"creditLimit": 100000000,
"usedCredit": 22000,
"createdAt": "2025-01-01T00:00:00.000Z",
"createdBy": "SYSTEM",
"updatedAt": "2025-01-15T10:30:00.000Z",
"updatedBy": "SYSTEM"
},
"model": "midjourney_7_0",
"type": "IMAGE_GENERATOR",
"metadata": null,
"rating": null,
"feedback": null,
"conversationId": null,
"status": "SUCCESS",
"createdAt": "2025-01-15T10:30:00.000Z",
"aiRecordDetail": {
"promptObject": {
"prompt": "Futuristic cityscape at sunset, flying cars, neon lights, cyberpunk aesthetic, 8K resolution",
"mode": "fast",
"n": 4,
"isNiji6": false,
"aspect_width": 7,
"aspect_height": 4,
"stylize": 200,
"chaos": 25,
"omni_reference": "https://example.com/reference-image.jpg",
"maintainModeration": true
},
"resultObject": [
"development/images/2025_01_15_10_30_15_001_futuristic_cityscape.png",
"development/images/2025_01_15_10_30_15_002_futuristic_cityscape.png",
"development/images/2025_01_15_10_30_15_003_futuristic_cityscape.png",
"development/images/2025_01_15_10_30_15_004_futuristic_cityscape.png"
],
"responseObject": {}
},
"additionalData": null,
"temporaryUrl": "https://s3.us-east-1.amazonaws.com/asset.1min.ai/development/images/2025_01_15_10_30_15_001_futuristic_cityscape.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLE_CREDENTIAL&X-Amz-Date=20250115T103000Z&X-Amz-Expires=604800&X-Amz-Signature=example_signature&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject"
}
}
Use Cases
- Next-Generation Creative Work: Cutting-edge artistic and commercial projects
- Film & Entertainment Industry: High-end concept art and promotional materials
- Gaming & Virtual Worlds: Advanced character and environment design
- Fashion & Luxury Brands: Premium visual content and campaigns
- Architectural Innovation: Revolutionary building and space visualization
- Research & Development: Experimental visual concepts and prototypes
Advanced Techniques with 7.0
1. Omni-Reference Mastery
# Single reference for complete visual guidance
{
"omni_reference": "development/assets/character-in-scene.jpg",
"omni_reference_weight": 1.2,
"prompt": "The character exploring an alien landscape, dramatic lighting"
}
2. Hybrid Reference Strategy
# Combine omni-reference with style reference for ultimate control
{
"omni_reference": "development/assets/main-reference.jpg",
"omni_reference_weight": 1.5,
"style_reference": "development/assets/art-style.jpg",
"prompt": "Epic fantasy scene with the character"
}
3. Professional Quality Settings
# Optimal settings for commercial work
{
"stylize": 150,
"chaos": 20,
"weird": 0,
"mode": "fast"
}
Tips for Optimal 7.0 Results
-
Leverage Omni-Reference Power:
- Use high-quality reference images (1024px+ recommended)
- Choose references that contain multiple elements you want to transfer
- Combine with detailed prompts for best results
-
Enhanced Prompt Strategies:
- Be more ambitious with complex scene descriptions
- Use technical photography and cinematography terms
- Layer multiple concepts confidently
-
Speed Optimization:
- Fast mode is 25% faster than V6.1
- Relax mode offers more predictable timing
- Generation quality is consistent across both modes
-
Professional Quality Control:
- Stylize 100-200: Professional, balanced results
- Stylize 300-500: Creative interpretation
- Chaos 0-30: Consistent professional output
- Chaos 50-100: Creative exploration
Version Evolution
| Feature | V5.2 | V6.1 | V7.0 |
|---|---|---|---|
| Reference System | Character + Style | Enhanced References | Omni-Reference |
| Generation Speed | Standard | Fast | Ultra-Fast |
| Image Quality | High | Very High | Ultra-High |
| Prompt Understanding | Good | Superior | Revolutionary |
| Consistency | Moderate | High | Exceptional |
| Creative Control | Standard | Advanced | Master-Level |
Revolutionary Capabilities
🎯 Omni-Reference Technology
- Universal Understanding: Single image influences all visual aspects
- Intelligent Extraction: AI automatically identifies transferable elements
- Workflow Simplification: Reduces complexity while increasing control
⚡ Performance Breakthroughs
- 25% Faster Generation: Reduced wait times across all modes
- Enhanced Processing: Better handling of complex prompts
- Improved Reliability: More consistent successful generations
🎨 Creative Excellence
- Master-Level Control: Unprecedented creative parameter precision
- Professional Quality: Commercial-grade output standards
- Artistic Innovation: Support for experimental and avant-garde concepts
Migration from Previous Versions
From V6.1 to V7.0
- Replace
character_referencewithomni_referencefor enhanced results - Expect faster generation times
- Leverage improved prompt understanding for more complex descriptions
From V5.2 to V7.0
- Significant quality and speed improvements
- New omni-reference system replaces all previous reference methods
- Enhanced parameter precision and control
Notes
- Midjourney 7.0 maintains the 4-image generation standard
- Omni-reference is the recommended reference method for V7.0
- Enhanced processing algorithms may produce different results from previous versions
- Best performance with high-quality reference images
- Optimal for cutting-edge creative and commercial applications
- Represents the current pinnacle of AI image generation technology