IdeogramPaidOperational
Ideogram V4 Fp8
API model name: ideogram-v4-fp8
Ideogram V4 Fp8 is Ideogram's image generation model, served on the Api.Airforce unified API. 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 Nf4Ideogram · FreeImage 1 WatermarkAirforce · $10.00 / 1MImagen 3Google · FreeImagen 4Google · FreeNano Banana 2Google · $30.00 / 1MNano Banana ProGoogle · $40.00 / 1MSuno V4.5Suno · FreeSuno V5Suno · FreeSuno V5.5Suno · FreeVoiceover MultilingualElevenLabs · $75.00 / 1MVoiceover V3ElevenLabs · $75.00 / 1MZ ImageAlibaba · Free
Loading live metrics…
Loading live metrics…
Use Ideogram V4 Fp8 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass ideogram-v4-fp8 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-fp8",
"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-fp8", 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-fp8", prompt: "a red panda coding" });
console.log(img.data[0].url);