Seededit-3-0-I2i-250628 - Image Edit
Seededit-3-0-I2i-250628 — Image Edit. GPTProto API reference.
POST
/
api
/
v3
/
images
/
generations
seededit-3-0-i2i-250628 (image edit)
curl --request POST \
--url https://api.example.com/api/v3/images/generationsimport requests
url = "https://api.example.com/api/v3/images/generations"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/v3/images/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v3/images/generations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v3/images/generations"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/v3/images/generations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v3/images/generations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyBytePlus’s official format for the image edit API.
curl -X POST "https://gptproto.com/api/v3/images/generations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seededit-3-0-i2i-250628",
"prompt": "Change bubbles into heart shape",
"image": "https://ark-project.tos-cn-beijing.volces.com/doc_image/seedream_i2i.jpeg",
"response_format": "url",
"size": "adaptive",
"seed": 21,
"guidance_scale": 5.5,
"watermark": true
}'
import requests
import json
url = "https://gptproto.com/api/v3/images/generations"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"model": "seededit-3-0-i2i-250628",
"prompt": "Change bubbles into heart shape",
"image": "https://ark-project.tos-cn-beijing.volces.com/doc_image/seedream_i2i.jpeg",
"response_format": "url",
"size": "adaptive",
"seed": 21,
"guidance_scale": 5.5,
"watermark": True
}
response = requests.post(url, headers=headers, json=data)
result = response.json()
print(json.dumps(result, indent=2))
const url = "https://gptproto.com/api/v3/images/generations";
const headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
};
const data = {
model: "seededit-3-0-i2i-250628",
prompt: "Change bubbles into heart shape",
image: "https://ark-project.tos-cn-beijing.volces.com/doc_image/seedream_i2i.jpeg",
response_format: "url",
size: "adaptive",
seed: 21,
guidance_scale: 5.5,
watermark: true
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://gptproto.com/api/v3/images/generations"
payload := []byte(`{
"model": "seededit-3-0-i2i-250628",
"prompt": "Change bubbles into heart shape",
"image": "https://ark-project.tos-cn-beijing.volces.com/doc_image/seedream_i2i.jpeg",
"response_format": "url",
"size": "adaptive",
"seed": 21,
"guidance_scale": 5.5,
"watermark": true
}`)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(payload))
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"error": {
"message": "Invalid request parameters",
"type": "invalid_request_error",
"code": "invalid_parameters"
}
}
{
"error": {
"message": "Invalid authentication credentials",
"type": "authentication_error",
"code": "invalid_api_key"
}
}
{
"error": {
"message": "Insufficient permissions or quota exceeded",
"type": "permission_error",
"code": "insufficient_quota"
}
}
{
"error": {
"message": "Rate limit exceeded",
"type": "rate_limit_error",
"code": "rate_limit_exceeded"
}
}
{
"error": {
"message": "Internal server error",
"type": "server_error",
"code": "internal_error"
}
}
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | ✅ Yes | seededit-3-0-i2i-250628 | The model identifier for image generation/editing |
prompt | string | ✅ Yes | - | Description of the desired image transformation or generation |
image | string | ✅ Yes | - | Input image URL for image-to-image editing |
response_format | string | ❌ No | url | Response format: “url” (image URL) or “b64_json” (base64 encoded) |
size | string | ❌ No | adaptive | Output image resolution. Options: adaptive, 1024x1024, 2K, 4K |
seed | integer | ❌ No | - | Random seed for reproducible results |
guidance_scale | number | ❌ No | 5.5 | Controls adherence to the prompt. Range: 1.0-10.0, recommended: 3.0-7.0 |
watermark | boolean | ❌ No | true | Whether to add watermark to the generated image |
Seededit-3-0-I2i-250628 - Image Edit - gptproto
Previous
Seedream-4-0-250828 - Image Edit - gptproto
Next
⌘I

