gpt-image-2 OpenAI’s image model through the Sogni API — 16 references, superb instructions.
No GPU. No setup. Cancel anytime.
GPT Image 2 is OpenAI’s frontier image model, available through the same Sogni key as every native model. It is the strongest instruction-follower in the catalog, renders text nearly flawlessly, and accepts up to sixteen reference images.
As a partner model it runs on vendor infrastructure rather than Supernet GPU workers, is billed in Premium Spark only (no SOGNI fallback), and is priced by output-image tokens — quality and references move the price; see the table.
GPT Image 2 is a pay-as-you-go Premium Spark vendor model. Every render uses purchased Spark, including for Sogni Unlimited members. Unlimited saves 5%; Unlimited Pro saves 10%.
| Configuration | Spark | USD |
|---|---|---|
| 1024 × 1024 · low | 1.53 Spark | $0.0076 |
| 1024 × 1024 · medium | 13.7 Spark | $0.069 |
| 1024 × 1024 · high | 54.8 Spark | $0.27 |
| 1024 × 1024 · medium · 1 reference | 30.8 Spark | $0.15 |
| 1536 × 1024 · high | 42.8 Spark | $0.21 |
Premium Spark required — purchased credits; free Spark does not apply.
Pricing is token-based: reference images add input-token cost; later outputs in a batch reuse cached references.
One Sogni API key reaches every model on the Supernet — call GPT Image 2 with the exact model id.
import { SogniClient } from '@sogni-ai/sogni-client';
const client = await SogniClient.createInstance({
appId: crypto.randomUUID(),
apiKey: process.env.SOGNI_API_KEY,
network: 'fast',
});
const project = await client.projects.create({
type: 'image',
modelId: 'gpt-image-2',
positivePrompt: 'a slothicorn surfing a wave of liquid paint, studio lighting',
numberOfMedia: 1,
});
const [url] = await project.waitForCompletion();
console.log(url); // result link — download within 24h curl https://api.sogni.ai/v1/creative-agent/workflows \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $SOGNI_API_KEY" \
-d '{
"input": {
"title": "First render",
"steps": [{
"id": "step1",
"toolName": "generate_image",
"arguments": { "prompt": "a slothicorn surfing a wave of liquid paint, studio lighting", "model": "gpt-image-2" }
}]
},
"confirm_cost": true
}' REST workflow alias: gpt-image-2. Pin the exact id with the SDK. Full reference at docs.sogni.ai.
Real generations from Sogni. Hit Use prompt to open the app with GPT Image 2 selected and the full prompt preloaded.
GPT Image 2 is a third-party frontier model. It uses purchased Spark for every render; Unlimited plans discount those pay-as-you-go rates instead of covering them as fair-use renders.
Vendor-backed renders are billed with Spark even when your account has an active Unlimited subscription.
Unlimited saves 5%; Unlimited Pro saves 10%.
Launch GPT Image 2 from the Sogni app or call the exact model id through the API.
Use premium vendor models alongside Sogni Supernet image, video, music, and language models.
GPT Image 2 is OpenAI’s frontier image model, available through the same Sogni key as every native model. It is the strongest instruction-follower in the catalog, renders text nearly flawlessly, and accepts up to sixteen reference images.
GPT Image 2 is pay-as-you-go Premium Spark. It is not covered as an Unlimited fair-use render; every render uses purchased Spark. Unlimited saves 5%; Unlimited Pro saves 10%. Prices start at 13.7 Spark ($0.069) per render.
Create instantly in the Sogni app, or call the Sogni API with model id gpt-image-2.
No. GPT Image 2 runs on the Sogni Supernet — a decentralized network of creator GPUs — with no local install or graphics card required.
Create in the app, or build with the API. Your call.