OpenAI · image model
GPT Image 1 API
Use the GPT Image 1 API for hosted AI image generation with model-aware inputs, asynchronous jobs, and MakeInfluencer credits.
Endpoint overview
https://www.makeinfluencer.ai/api/v1/models/gpt-image-1/generationsModel ID
gpt-image-1Typical time
40s
Sample quote
13,534 credits
The displayed price is input-specific
Create a generation
Send the model fields inside input. The request returns HTTP 202 with an owned generation ID.
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/gpt-image-1/generations \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Idempotency-Key: gpt-image-1-001" \
--header "Content-Type: application/json" \
--data '{
"input": {
"prompt": "Editorial portrait of a fashion creator in a sunlit studio",
"numOutputs": 1,
"aspectRatio": "1:1",
"moderation": "auto"
}
}'Model parameters
| Field | Type | Default | Accepted values |
|---|---|---|---|
promptrequired | text | — | — |
moderation | enum | auto | auto, low |
aspectRatio | enum | 1:1 | 1:1, 16:9, 21:9, 3:2, 2:3, 4:5, 5:4, 3:4, 4:3, 9:16, 9:21 |
imageUrls | imageArray | — | Up to 10 items |
The same contract is available fromGET /models/gpt-image-1 for server-side validation and dynamic tooling.
Preview credits
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/gpt-image-1/preview-credits \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"input": {
"prompt": "Editorial portrait of a fashion creator in a sunlit studio",
"numOutputs": 1,
"aspectRatio": "1:1",
"moderation": "auto"
}
}'A valid response returns the exact credit cost and pricing description. The dashboard, REST API, and MCP use one balance at the same model price.
Poll the result
curl \
https://www.makeinfluencer.ai/api/v1/generations/image/GENERATION_ID \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY"Poll until terminal is true. On success, ready is true. Readurl for video orurls for image output. See the polling guide for statuses and backoff.
GPT Image 1 API FAQ
How much does the GPT Image 1 API cost?
The documented sample request costs 13,534 MakeInfluencer credits. Final cost depends on the exact model inputs, and the preview-credits endpoint returns an exact quote without charging.
Does the GPT Image 1 API use a separate balance?
No. REST, MCP, and the MakeInfluencer dashboard use the same account credit balance.
How do I receive GPT Image 1 results?
Creation returns HTTP 202 with a generation ID. Poll the image generation-status endpoint until terminal is true. On success, ready is true and the response contains the output URL.