Routeway Logo
Back to Models
HuggingFace

Animagine XL 4.0

Available

Description

Animagine XL 4.0 - High-quality anime generation model with NSFW capabilities.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0037

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1920x1088, 1088x1920, 768x1024, 1024x768, 1408x1024, 1024x1408, 512x512, 2048x2048, 768x768, 896x896, 1152x1152, 1280x1280, 1536x1536

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0037

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.0056
1024x1408$0.0056
1024x768$0.0056
1088x1920$0.0056
1152x1152$0.0056
1280x1280$0.0056
1408x1024$0.0056
1536x1536$0.0066
1920x1088$0.0056
2048x2048$0.0075
512x512$0.0037
768x1024$0.0056
768x768$0.0047
896x896$0.0056
auto$0.0037

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1920x1088
1088x1920
768x1024
1024x768
1408x1024
1024x1408
512x512
2048x2048
768x768
896x896
1152x1152
1280x1280
1536x1536

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: 'animagine-xl-4.0',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

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