# Imagen 3.0 > High-fidelity text-to-image model delivering photorealistic images with enhanced prompt understanding, improved detail, lighting, and reduced artifacts, supporting diverse artistic styles and advanced safety features. ## Overview - **Model ID**: `imagen-3` - **Category**: image - **Provider**: google - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/8af88782-3a7a-4d95-9e6f-38c8a7b24b2a.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/images/text-to-image` - **Method**: POST ### Parameters - **`prompt`** (required): - Type: textarea ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/images/text-to-image \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "imagen-3", "prompt": "A spooky Halloween-themed burger designed with a carved jack-o’-lantern pumpkin as the bun, glowing with fiery light inside. The burger contains multiple juicy beef patties, melted glowing cheese resembling fire, and fresh lettuce. Dark moody background with glowing orange bokeh lights, a wine glass, and a bottle adding to the eerie Halloween atmosphere. Highly detailed, cinematic, dramatic lighting, photorealistic style." }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/images/text-to-image", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "imagen-3", "prompt": "A spooky Halloween-themed burger designed with a carved jack-o’-lantern pumpkin as the bun, glowing with fiery light inside. The burger contains multiple juicy beef patties, melted glowing cheese resembling fire, and fresh lettuce. Dark moody background with glowing orange bokeh lights, a wine glass, and a bottle adding to the eerie Halloween atmosphere. Highly detailed, cinematic, dramatic lighting, photorealistic style." } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/images/text-to-image", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "imagen-3", "prompt": "A spooky Halloween-themed burger designed with a carved jack-o’-lantern pumpkin as the bun, glowing with fiery light inside. The burger contains multiple juicy beef patties, melted glowing cheese resembling fire, and fresh lettuce. Dark moody background with glowing orange bokeh lights, a wine glass, and a bottle adding to the eerie Halloween atmosphere. Highly detailed, cinematic, dramatic lighting, photorealistic style." }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/imagen-3/imagen-3) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)