What are Models
Understanding AI models on Get3W.
Overview
Models are AI systems trained to generate specific types of content. Get3W hosts 700+ models from various providers, all accessible through a unified API.
Model Categories
| Category | Description | Example Models |
|---|---|---|
| Text-to-Image | Generate images from text | FLUX, Seedream, Nano Banana |
| Image-to-Image | Transform or edit images | FLUX Kontext, Seedream Edit |
| Text-to-Video | Create videos from text | Sora 2, Wan T2V |
| Image-to-Video | Animate images | Veo 3.1, Kling I2V, Hailuo |
| Video-to-Video | Transform or extend videos | Video effects, style transfer |
| Text-to-Audio | Generate speech, music, sounds | Minimax Speech, ElevenLabs |
| Audio-to-Video | Generate video from audio | MMAudio |
| Image-to-Text | Describe or analyze images | Molmo, Qwen VL |
| Image-to-3D | Create 3D models from images | Hunyuan3D, Tripo3D |
| Training | Train custom LoRA models | FLUX LoRA Training |
Browse all categories at get3w.com/models.
Model Identifiers
Each model has a unique identifier in the format:
{provider}/{model-name}Examples:
get3w/flux-devgoogle/veo3bytedance/seedream-v4
Model Properties
Parameters
Each model has its own set of input parameters. Common examples:
| Parameter | Description | Used By |
|---|---|---|
prompt | Text description of what to generate | Most models |
image_url | Input image URL | I2V, I2I models |
width, height | Output dimensions | Image models |
duration | Video length in seconds | Video models |
seed | Random seed for reproducibility | Most models |
TIP
Always check the model's documentation for its specific parameters. Each model page shows all available parameters with descriptions and defaults.
Pricing
Models have different pricing based on:
- Model complexity
- Output type and size
- Provider costs
Rate Limits
Some models may have additional rate limits beyond your account tier.
Finding Models
Browse
Visit get3w.com/models to browse all models with filters.
API
List available models programmatically:
bash
curl "https://api.get3w.com/api/v3/models" \
-H "Authorization: Bearer YOUR_API_KEY"