All services

Service

fal.ai

image9 endpoints
Docs

Image and video generation with 600+ AI models including Flux, Stable Diffusion, Recraft, and Grok. Pay per generation on Tempo.

mpp

tempo

Methods

9 methods available

POST/fal-ai/fast-sdxl
3000 USDC

Quick Stable Diffusion XL generation.

POST JSON body with prompt. Fast SDXL generation.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "num_images": "number (optional)"
  }
}
POST/fal-ai/flux/dev
25000 USDC

High-quality text-to-image with Flux Dev.

POST JSON body with prompt. Returns generated image URLs.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional, e.g. 'landscape_4_3', 'square_hd')",
    "num_images": "number (optional, default 1)"
  }
}
POST/fal-ai/flux-pro/v1.1
35000 USDC

Professional-grade image generation with Flux Pro.

POST JSON body with prompt. Higher quality than Flux Dev.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "num_images": "number (optional)"
  }
}
POST/fal-ai/flux-pro/v1.1-ultra
60000 USDC

Ultra-high resolution image generation up to 2K.

POST JSON body with prompt. Up to 2K resolution with improved realism.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "num_images": "number (optional)"
  }
}
POST/fal-ai/flux/schnell
3000 USDC

Fast text-to-image with Flux Schnell (1-4 steps).

POST JSON body with prompt. Optimized for speed.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "num_images": "number (optional)"
  }
}
POST/fal-ai/minimax/video-01
70000 USDC

Text or image to video generation with MiniMax.

POST JSON body. Use prompt for text-to-video, add image_url for image-to-video.

{
  "body": {
    "prompt": "string (required)",
    "image_url": "string (optional, for image-to-video)"
  }
}
POST/fal-ai/recraft-v3
40000 USDC

State-of-the-art text-to-image with long text rendering and vector art support.

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "style": "string (optional)"
  }
}
POST/fal-ai/stable-diffusion-v35-large
35000 USDC

Stable Diffusion 3.5 Large text-to-image.

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "image_size": "string (optional)",
    "num_images": "number (optional)"
  }
}
POST/fal-ai/stable-video
70000 USDC

Image-to-video generation with Stable Video Diffusion.

POST JSON body with source image URL. Returns generated video.

{
  "body": {
    "image_url": "string (required, URL of source image)"
  }
}