getimg.ai logo

getimg.ai

The ultimate AI creative platform for images, video, and editing in one tool

Free tier available·All audiences·Powered by Multi-model (FLUX, Google Veo, Kling, Sora, Seedance, MiniMax, Qwen, and 26+ others)·API available

Key strengths

Access to 33+ leading AI models (FLUX, Kling, Google Veo, Sora, Seedance, and more) under one subscriptionUnified interface for image generation, video generation, and editing without switching toolsNatural language prompting — no prompt engineering or syntax requiredConsistent character and style replication across multiple outputs using reference imagesTeam collaboration with shared workspaces and multi-seat plans
Free tier + paid plans · from $8 USD/mo
Founded 2022
No ratings yet

getimg.ai API & Developer Setup

API Access

getimg.ai exposes a REST API for integrating AI image and video generation into your own applications or workflows. API access is available on paid plans.

  • Base URL: https://api.getimg.ai/v1
  • Authentication: Bearer token via Authorization: HTTP header
  • Key endpoints: /text-to-image, /image-to-image, /inpaint, /upscale, /background-removal, /text-to-video, /image-to-video

Example Request (Text-to-Image)

curl -X POST https://api.getimg.ai/v1/text-to-image \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "flux-schnell",
    "prompt": "A product photo of a white sneaker floating in mid-air with butterflies",
    "width": 1024,
    "height": 1024,
    "output_format": "png"
  }'

Key Parameters

  • model — Specify the underlying model (e.g., flux-schnell, flux-pro, stable-diffusion-xl); if omitted, the platform auto-selects.
  • prompt — Natural language description of the desired output.
  • width / height — Output dimensions in pixels.
  • steps — Number of diffusion steps (quality vs. speed trade-off).
  • guidance_scale — How closely the output adheres to the prompt.
  • image — Base64-encoded input image for image-to-image or inpainting tasks.

Integration Notes

  • Responses return base64-encoded images or video URLs.
  • Credit consumption varies by model and resolution; check the pricing page for per-operation costs.
  • Rate limits and concurrent generation slots depend on your subscription tier (2–10 parallel generations).