MiniMax Image-01

Model Information

Display Name: MiniMax Image-01

API Model ID: minimax/image-01

Category: Text To Image

Description: MiniMax Image-01 is a high-quality text-to-image model with cinematic visual output and character consistency support. **Key Features:** - Cinematic, high-quality image generation - Character consistency with reference images - Up to 9 images per request - Prompts up to 1500 characters - Custom resolutions from 512 to 2048px **Use Cases:** - Marketing and advertising visuals - Storyboarding and character design - Social media content creation - Product visualization

How to Use This Model

To use MiniMax Image-01 via the HInow.ai API, use the model ID: minimax/image-01

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "minimax/image-01",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "minimax/image-01",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.005

Available Parameters

  • aspect_ratio: Output aspect ratio. All 9 canonical ratios are accepted; if the upstream provider does not natively support a given ratio, the system maps to the closest one. (Options: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 21:9, 9:21)
  • num_images: Number of images to generate. (Options: 1, 2, 3, 4, 5, 6, 7, 8, 9)
  • output_format: Output image format. (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "minimax/image-01"

Featured: No

Documentation: https://hinow.ai/models/minimax/image-01

API Endpoint: https://api.hinow.ai/v1

Back to Models

MiniMax Image-01

minimax/image-01

$0.0050
per image

About

MiniMax Image-01 is a high-quality text-to-image model with cinematic visual output and character consistency support.

Key Features:

  • Cinematic, high-quality image generation
  • Character consistency with reference images
  • Up to 9 images per request
  • Prompts up to 1500 characters
  • Custom resolutions from 512 to 2048px

Use Cases:

  • Marketing and advertising visuals
  • Storyboarding and character design
  • Social media content creation
  • Product visualization

Capabilities

Text To Image

Parameters

aspect_ratio

Output aspect ratio. All 9 canonical ratios are accepted; if the upstream provider does not natively support a given ratio, the system maps to the closest one.

1:116:99:164:33:43:22:321:99:21
num_images

Number of images to generate.

123456789
output_format

Output image format.

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "minimax/image-01",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "num_images": "1",
      "output_format": "jpeg"
    }
  }'