Image Generation
Generate Images
Create one or more image generation jobs in an existing project. The API returns image IDs immediately; poll each ID for status.
POST
/
v1
/
images
/
generate
Generate Images
curl --request POST \
--url https://api.turboads.ai/v1/images/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "j97project123abc456def789",
"prompt": "A cinematic product photo of a skincare bottle on a marble counter",
"model": "nano-banana-2",
"aspect_ratio": "1:1",
"count": 1
}
'import requests
url = "https://api.turboads.ai/v1/images/generate"
payload = {
"project_id": "j97project123abc456def789",
"prompt": "A cinematic product photo of a skincare bottle on a marble counter",
"model": "nano-banana-2",
"aspect_ratio": "1:1",
"count": 1
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
project_id: 'j97project123abc456def789',
prompt: 'A cinematic product photo of a skincare bottle on a marble counter',
model: 'nano-banana-2',
aspect_ratio: '1:1',
count: 1
})
};
fetch('https://api.turboads.ai/v1/images/generate', 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.turboads.ai/v1/images/generate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'project_id' => 'j97project123abc456def789',
'prompt' => 'A cinematic product photo of a skincare bottle on a marble counter',
'model' => 'nano-banana-2',
'aspect_ratio' => '1:1',
'count' => 1
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.turboads.ai/v1/images/generate"
payload := strings.NewReader("{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
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.turboads.ai/v1/images/generate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.turboads.ai/v1/images/generate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}"
response = http.request(request)
puts response.read_body{
"data": {
"ids": [
"j97image123abc456def789"
],
"status": "pending"
}
}{
"error": {
"code": "invalid_request",
"message": "Required fields are missing or malformed."
}
}{
"error": {
"code": "unauthorized",
"message": "Missing, invalid, or revoked API key."
}
}{
"error": {
"code": "insufficient_credits",
"message": "Insufficient credits. Required: 8, Available: 2"
}
}{
"error": {
"code": "forbidden",
"message": "Project does not belong to this API key workspace."
}
}{
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded."
},
"retry_after_ms": 1200
}{
"error": {
"code": "internal_error",
"message": "Something went wrong."
}
}Authorizations
Your TurboAds API key
Body
application/json
Existing project ID in the API key workspace.
Text prompt describing the image to generate.
Available options:
nano-banana-2, gpt-image-1.5, seedream-4.5 Available options:
1:1, 9:16, 16:9 Number of images to create.
Required range:
1 <= x <= 10Completed image file upload IDs to use as reference images.
Response
Image generation jobs created
Show child attributes
Show child attributes
⌘I
Generate Images
curl --request POST \
--url https://api.turboads.ai/v1/images/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "j97project123abc456def789",
"prompt": "A cinematic product photo of a skincare bottle on a marble counter",
"model": "nano-banana-2",
"aspect_ratio": "1:1",
"count": 1
}
'import requests
url = "https://api.turboads.ai/v1/images/generate"
payload = {
"project_id": "j97project123abc456def789",
"prompt": "A cinematic product photo of a skincare bottle on a marble counter",
"model": "nano-banana-2",
"aspect_ratio": "1:1",
"count": 1
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
project_id: 'j97project123abc456def789',
prompt: 'A cinematic product photo of a skincare bottle on a marble counter',
model: 'nano-banana-2',
aspect_ratio: '1:1',
count: 1
})
};
fetch('https://api.turboads.ai/v1/images/generate', 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.turboads.ai/v1/images/generate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'project_id' => 'j97project123abc456def789',
'prompt' => 'A cinematic product photo of a skincare bottle on a marble counter',
'model' => 'nano-banana-2',
'aspect_ratio' => '1:1',
'count' => 1
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.turboads.ai/v1/images/generate"
payload := strings.NewReader("{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
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.turboads.ai/v1/images/generate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.turboads.ai/v1/images/generate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"project_id\": \"j97project123abc456def789\",\n \"prompt\": \"A cinematic product photo of a skincare bottle on a marble counter\",\n \"model\": \"nano-banana-2\",\n \"aspect_ratio\": \"1:1\",\n \"count\": 1\n}"
response = http.request(request)
puts response.read_body{
"data": {
"ids": [
"j97image123abc456def789"
],
"status": "pending"
}
}{
"error": {
"code": "invalid_request",
"message": "Required fields are missing or malformed."
}
}{
"error": {
"code": "unauthorized",
"message": "Missing, invalid, or revoked API key."
}
}{
"error": {
"code": "insufficient_credits",
"message": "Insufficient credits. Required: 8, Available: 2"
}
}{
"error": {
"code": "forbidden",
"message": "Project does not belong to this API key workspace."
}
}{
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded."
},
"retry_after_ms": 1200
}{
"error": {
"code": "internal_error",
"message": "Something went wrong."
}
}
