Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.firemoon.studio/llms.txt

Use this file to discover all available pages before exploring further.

Overview

MiniMax provides advanced multimodal AI capabilities for complex creative tasks, combining text, image, and other modalities for sophisticated content generation.

Available Models

hailuo-02

The latest multimodal model from MiniMax, capable of advanced creative tasks and content generation. Endpoint: POST /api/v1/minimax/hailuo-02 Best for:
  • Complex creative workflows
  • Multimodal content generation
  • Advanced AI applications
  • Research and experimentation
Performance:
  • Inference time: 10-20 seconds
  • Quality: High versatility
  • Cost: Medium-High

Parameters

Required Parameters

ParameterTypeDescription
promptstringDetailed description of the desired output

Optional Parameters

ParameterTypeDefaultDescription
aspect_ratiostring”1:1”Output aspect ratio
stylestring”auto”Generation style preference
qualitystring”standard”Quality level: “standard”, “high”
seednumberrandomRandom seed for reproducible results

Examples

Creative Content Generation

const response = await fetch('https://firemoon.studio/api/v1/minimax/hailuo-02', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer your_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    prompt: 'A surreal landscape where trees grow musical instruments instead of leaves',
    aspect_ratio: '16:9',
    style: 'artistic',
    quality: 'high'
  })
});

const result = await response.json();
console.log('Generated image:', result.images[0].url);

Response Format

{
  "images": [
    {
      "url": "https://blob.vercel-storage.com/...",
      "width": 1024,
      "height": 1024,
      "content_type": "image/jpeg"
    }
  ],
  "seed": 123456789,
  "timings": {
    "inference": 12.3
  }
}

Best Practices

Advanced Prompt Engineering

Leverage multimodal thinking:
  • “Combine elements of steampunk machinery with natural landscapes”
  • “A portrait that blends human features with architectural elements”
Specify complexity levels:
  • “Highly detailed and intricate design”
  • “Minimalist composition with deep symbolic meaning”

Use Cases

  • Artistic Exploration: Experimental and avant-garde content
  • Brand Innovation: Unique visual identities
  • Research: Testing novel AI capabilities
  • Creative Direction: Complex visual concepts

Pricing

MiniMax generation is billed at a premium rate due to its advanced capabilities. Contact us for detailed pricing.
MiniMax is designed for sophisticated creative workflows and experimental applications. For simpler tasks, consider FLUX or Ideogram first.