IdeogramFreeOperational
Ideogram V4 Nf4
API model name: ideogram-v4-nf4
Ideogram V4 Nf4 is Ideogram's image generation model, served on the Api.Airforce unified API. It is available on the free tier at no per-token cost. Access it through the OpenAI-compatible API with one key, alongside 65+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- Ideogram
- Type
- image generation model
Related models
Ideogram V4 Fp8Ideogram · $40.00 / 1MVoiceover MultilingualElevenLabs · $75.00 / 1MVoiceover V3ElevenLabs · $75.00 / 1MZ ImageAlibaba · FreeEleven Flash V2 5ElevenLabs · $37.50 / 1MEleven Multilingual V2ElevenLabs · $75.00 / 1MEleven Turbo V2 5ElevenLabs · $37.50 / 1MEleven V3ElevenLabs · $75.00 / 1MElevenlabs DubbingElevenLabsElevenlabs IsolationElevenLabsElevenlabs MusicElevenLabsElevenlabs ScribeElevenLabs
Loading live metrics…
Loading live metrics…
Use Ideogram V4 Nf4 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass ideogram-v4-nf4 as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "ideogram-v4-nf4",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="ideogram-v4-nf4", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "ideogram-v4-nf4", prompt: "a red panda coding" });
console.log(img.data[0].url);