Routeway Logo
Back to Models
Minimax

MiniMax Image-01

Available

Description

MiniMax Image-01 generates high-quality images from text.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0055

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1280x720, 1152x864, 1248x832, 832x1248, 864x1152, 720x1280, 1344x576

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0055

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.0055
1152x864$0.0055
1248x832$0.0055
1280x720$0.0055
1344x576$0.0055
720x1280$0.0055
832x1248$0.0055
864x1152$0.0055
auto$0.0055

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1280x720
1152x864
1248x832
832x1248
864x1152
720x1280
1344x576

Feature Availability

Capabilities explicitly listed in the current payload.

Image

Available

Yes

Vision

Not listed

No

Function calling

Not listed

No

Reasoning

Not listed

No

Code Samples

Quick start with the Routeway API

const response = await fetch('https://api.routeway.ai/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'minimax-image-01',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

const imageData = await response.json();
console.log(imageData);