AirforcePaidOperational
Image 1 Watermark
API model name: image-1-watermark
Image 1 Watermark 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 Watermark used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Image 1Airforce · $40.00 / 1MImage 1 EditAirforce · $120.00 / 1MPlutotext R3 EmotionalAirforce · FreeNano Banana FlashGoogle · $20.00 / 1MNano Banana ProGoogle · $40.00 / 1MQwen ImageAlibaba · $15.54 / 1MQwen Image 2.0Alibaba · $12.69 / 1MQwen Image EditAlibaba · $18.66 / 1MSuno V4.5Suno · FreeSuno V5Suno · FreeSuno V5.5Suno · FreeTts 1OpenAI · $0.12 / 1M
Image 1 Watermark — frequently asked questions
- How much does Image 1 Watermark cost?
- Image 1 Watermark is billed per generation rather than per token. See the pricing page for the current rate.
- What can Image 1 Watermark do?
- Image 1 Watermark is Airforce's image generation model, accessible through the Api.Airforce API.
- Is Image 1 Watermark free to use?
- Image 1 Watermark is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Image 1 Watermark via the API?
- Image 1 Watermark is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID image-1-watermark with your Api.Airforce API key.
- Who makes Image 1 Watermark?
- Image 1 Watermark 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 Watermark via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass image-1-watermark 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-watermark",
"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-watermark", 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-watermark", prompt: "a red panda coding" });
console.log(img.data[0].url);