WisGate exposes the full OpenAI image API, giving you access to the latest gpt-image-2, gpt-image-1, and dall-e-3 models through an OpenAI-compatible interface. Simply replace the Base URL and API key:
Base URL: https://api.wisgate.ai
API Key: Replace $OPENAI_API_KEY with your $WISDOM_GATE_KEY
gpt-image-2 is OpenAI’s newest image model with improved quality, better instruction following, and enhanced multi-image composition capabilities. We recommend it for new projects.
The mask must be a PNG file with the same dimensions as the source image. Fully transparent pixels (alpha = 0) mark areas to be replaced; fully opaque pixels (alpha = 255) are preserved.
What’s the difference between gpt-image-2, gpt-image-1, and dall-e-3?
gpt-image-2 is OpenAI’s newest and most capable image model, featuring improved image quality, better prompt understanding, and enhanced multi-image composition. gpt-image-1 also supports image editing, transparent backgrounds, and multi-image composition. Both have a 32,000-character prompt limit. dall-e-3 is specialized for photorealistic styles and provides revised_prompt feedback, but only supports text-to-image with n=1.
Can I use gpt-image-1 with the official OpenAI SDK?
Yes — just change base_url and api_key:
from openai import OpenAIclient = OpenAI(api_key="YOUR_WISDOM_GATE_KEY", base_url="https://api.wisgate.ai/v1")
All other SDK methods and parameters work identically.
Auto-Generated API ReferenceThe interactive request/response schema below is automatically generated from the OpenAPI specification. Scroll down to explore all parameters with live examples.