AI / Images Free Tier Available

ImageGen Pro

Create stunning images from text descriptions using Stable Diffusion XL. Supports multiple styles and aspect ratios.

Free tier: 50 images/day Method: POST

Quick Start

Get started with ImageGen Pro in 3 steps:

  1. 1. Get your free API key (instant, no credit card)
  2. 2. Activate your key to unlock all endpoints
  3. 3. Make your first request using the examples below

Endpoint

POST https://freeapitools.dev/api/v1/images/generate

Parameters

Name Type Required Description
prompt string Required Image description
size string Optional 256x256, 512x512, or 1024x1024
style string Optional realistic, anime, oil-painting, etc.
api_key string Required Your API key. Get one free →

Code Examples

cURL

curl -X POST https://freeapitools.dev/api/v1/images/generate \
  -H "Content-Type: application/json" \
  -d '{"prompt":"example"}'

Node.js / JavaScript

const response = await fetch('https://freeapitools.dev/api/v1/images/generate', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'YOUR_API_KEY'
  },
  body: JSON.stringify({"prompt":"example"})
});
const data = await response.json();
console.log(data);

Python

import requests

response = requests.post(
    'https://freeapitools.dev/api/v1/images/generate',
    json={"prompt":"example"},
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json())

Example Response

{
  "url": "https://cdn.freeapitools.dev/img/abc123.png",
  "seed": 42
}

Rate Limits

Plan Limit Price
Free 50 images/day $0 / month
Enhanced (10x) 10x free tier limits $0 / monthcomplete compatibility check
Unlimited No limits $0 / monthsend environment profile

Start Using ImageGen Pro for Free

Get your API key instantly. No credit card, no signup form — just a simple API call.

Get Free API Key →