Imagine 3 Fast

API для получения генерации от модели Google Imagine 3 fast

Чтобы отправлять авторизованные запросы нужно получить API ключ, как это сделать написано в разделе С чего начать?

Запрос

POST https://gptunnel.ru/v1/media/create

Асинхронный запрос вернёт задачу и её идентификатор — сохраните его для последующего получения ссылки на результат.

Пример запроса /create

import axios from 'axios'

const request = axios({
  method: 'POST',
  url: 'https://gptunnel.ru/v1/media/create',
  headers: {
    // use your API key here
    Authorization: 'YOUR_API_KEY',
  },
  data: {
    model:"google-imagen-3-fast",
    ar: "16:9",
    prompt: "A breathtaking, hand-drawn frame from a Studio Ghibli masterpiece, showcasing an enchanting open-air garden bursting with life. The scene is a symphony of vibrant colors, with each blade of grass and leaf meticulously rendered. A towering man, 3 meters tall, reclines on an ornate sofa, his presence both whimsical and imposing. His blond hair shimmers with golden highlights, each strand individually animated to catch the light. His demonic smile reveals perfectly crafted teeth, adding a touch of menace to his otherworldly charm. The man's coat is a marvel of animation, each pink feather lovingly detailed and shimmering with an iridescent glow that seems to dance in the sunlight. The play of light on the feathers creates a mesmerizing effect, with subtle hues of lavender and rose gold blending seamlessly. His red-tinted glasses gleam with hyper-realistic reflections, capturing miniature versions of the surrounding garden. Behind him, a line of servants stands in perfect stillness, their expressions a study in subtle emotion. Each face is uniquely crafted, with minute details in their eyes and the set of their mouths hinting at hidden depths. The statues scattered throughout the garden seem alive, their marble surfaces catching and diffracting the light in impossibly beautiful ways. The sky is a masterpiece of color gradation, transitioning from a deep, rich blue at the zenith to softer hues near the horizon. Clouds drift lazily, their edges softly blurred yet intricately detailed, casting gentle shadows that move across the landscape. The sunlight bathes the entire scene in a warm, golden glow, creating long shadows and highlighting every texture and surface with photorealistic precision. Every element in the frame, from the smallest leaf to the grandest statue, is rendered with Studio Ghibli's signature attention to detail. The result is a living, breathing world that invites the viewer to step inside and explore its magical depths."
  },
})

request.then((result) => {
  console.log(result)
}).catch((error) => {
  console.error(error)
})

Request Body

Name
Type
Description

model*

string

Уникальный ID модели

prompt*

string

Промпт запроса

ar

string

Соотношение сторон, допустимые значения '1:1', '16:9', '9:16', '4:3', '3:4', '21:9', '9:21'

Headers

Name
Type
Description

Authorization*

string

API ключ

Пример ответа /create

{
	"code": 0,
	"id": "6880f1a9e606050001882202",
	"model": "google-imagen-3-fast",
	"prompt": "An epic scene extracted from a blockbuster movie d epic ting men cutting down the trunk of a majestic white tree within a citadel The citadel, carved from brilliant white stone, features intricate architecture— graceful arches, statues, and cascading terraces. Splendid light bathes the scene, highlighting its grandiosity, contrasting with the solemn destruction of the tree. The camera captures wide shots of the citadel 's vastness and close-ups of the men's effort. Muscular arms swing axes, sending shards of white bark fluttering to the ground. The perspective shifts with each swing, emphasizing the scale of the task. Hyper-detailed VFX bring the scene to life— splinters glisten in sunlight, dust rises with each swing, fire burns with huge flames and fire particles in the citadel and subtle tremors run through the ground as the tree falls. Inspired by Peter Jackson's style, the visuals blend grandeur with intimate moments, showing both the struggle and the cost of progres --ar 16:9",
	"created_at": 1753280937,
	"status": "idle",
	"url": null
}

После получения 24-значного идентификатора задачи вы можете вызвать метод для получения результата.

POST https://gptunnel.ru/v1/media/result

Запрос можно вызвать как POST так и GET методом передав task_id в query либо в body. Результатом выполнения запроса будет json объект с ссылкой на изображение.

Пример запроса /result

import axios from 'axios'

const request = axios({
  method: 'POST',
  url: 'https://gptunnel.ru/v1/media/result',
  headers: {
    // use your API key here
    Authorization: 'YOUR_API_KEY',
  },
  data: {
    task_id:"6880f1a9e606050001882202"
  },
})

request.then((result) => {
  console.log(result)
}).catch((error) => {
  console.error(error)
})

Пример ответа /result

{
	"code": 0,
	"id": "6880f1a9e606050001882202",
	"model": "google-imagen-3-fast",
	"prompt": "An epic scene extracted from a blockbuster movie d epic ting men cutting down the trunk of a majestic white tree within a citadel The citadel, carved from brilliant white stone, features intricate architecture— graceful arches, statues, and cascading terraces. Splendid light bathes the scene, highlighting its grandiosity, contrasting with the solemn destruction of the tree. The camera captures wide shots of the citadel 's vastness and close-ups of the men's effort. Muscular arms swing axes, sending shards of white bark fluttering to the ground. The perspective shifts with each swing, emphasizing the scale of the task. Hyper-detailed VFX bring the scene to life— splinters glisten in sunlight, dust rises with each swing, fire burns with huge flames and fire particles in the citadel and subtle tremors run through the ground as the tree falls. Inspired by Peter Jackson's style, the visuals blend grandeur with intimate moments, showing both the struggle and the cost of progres --ar 16:9",
	"created_at": 1753280937,
	"status": "done",
	"url": "https://timenote.storage.yandexcloud.net/exp48h/6880f1a9e606050001882202_result.webp"
}

Last updated