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 100+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3
Qualities: standard, hd
Specifications
- Provider
- Ideogram
- Type
- image generation model
What is Ideogram V4 Fp8 used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Ideogram V4 Nf4Ideogram · FreeGpt Audio 1.5OpenAI · $6.60 / 1MGpt RealtimeOpenAI · $10.59 / 1MGpt Realtime 1.5OpenAI · $10.59 / 1MGrok Imagine ImagexAI · $17.35 / 1MImage 1Airforce · $40.00 / 1MImage 1 EditAirforce · $120.00 / 1MImage 1 WatermarkAirforce · $10.00 / 1MMinimax Hailuo 02MiniMax · $3.42 / 1MMinimax Hailuo 2.3MiniMax · $3.42 / 1MNano Banana 2Google · $251.80 / 1MNano Banana ProGoogle · $251.80 / 1M
Ideogram V4 Fp8 — frequently asked questions
- How much does Ideogram V4 Fp8 cost?
- Ideogram V4 Fp8 is billed per generation rather than per token. See the pricing page for the current rate.
- What can Ideogram V4 Fp8 do?
- Ideogram V4 Fp8 is Ideogram's image generation model, accessible through the Api.Airforce API.
- Is Ideogram V4 Fp8 free to use?
- Ideogram V4 Fp8 is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Ideogram V4 Fp8 via the API?
- Ideogram V4 Fp8 is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID ideogram-v4-fp8 with your Api.Airforce API key.
- Who makes Ideogram V4 Fp8?
- Ideogram V4 Fp8 is Ideogram's image generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
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);