AirforcePaidOperational
Image 1
API model name: image-1
Image 1 is Airforce'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, 4:3, 3:4, 16:9, 9:16
Specifications
- Provider
- Airforce
- Type
- image generation model
What is Image 1 used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Image 1 EditAirforce · $120.00 / 1MImage 1 WatermarkAirforce · $10.00 / 1MPlutotext R3 EmotionalAirforce · FreeWhisper 1OpenAI · $6.42 / 1MChatgpt ImageOpenAI · $17.10 / 1MDall E 2OpenAI · $10.00 / 1MDall E 3OpenAI · $20.00 / 1MEleven Flash V2 5ElevenLabs · $37.50 / 1MEleven Multilingual V2ElevenLabs · $75.00 / 1MEleven Turbo V2 5ElevenLabs · $37.50 / 1MEleven V3ElevenLabs · $75.00 / 1MElevenlabs DubbingElevenLabs
Image 1 — frequently asked questions
- How much does Image 1 cost?
- Image 1 is billed per generation rather than per token. See the pricing page for the current rate.
- What can Image 1 do?
- Image 1 is Airforce's image generation model, accessible through the Api.Airforce API.
- Is Image 1 free to use?
- Image 1 is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Image 1 via the API?
- Image 1 is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID image-1 with your Api.Airforce API key.
- Who makes Image 1?
- Image 1 is Airforce'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 Image 1 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass image-1 as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "image-1",
"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="image-1", 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: "image-1", prompt: "a red panda coding" });
console.log(img.data[0].url);