- GET START
- OpenAI Compatiable Endpoint
- Audio
- Anthropic Compatiable Endpoint
- Music Generation Endpoint
- Image Generation Endpoint
- Midjourney(images)
- Ideogram(images)
- Official documentation (updated in real time)
- Generate 3.0 (text to image)POST
- Remix 3.0 (hybrid image)POST
- Reframe 3.0(Reconstruction)POST
- Replace Background 3.0(Background replacement)POST
- Edit 3.0(Editing images)POST
- ideogram Text Raw ImagePOST
- ideogram Hybrid imagePOST
- ideogram enlargement HDPOST
- ideogram describes the imagePOST
- ideogram Edit imagePOST
- Flux(images)
- Replicate(image)
- Recraft(images)
- Video Generation Ednpoint
- Software Integration Guide
- cometapi Site API Call Testing
- OpenManus
- Chatbox
- CherryStudio
- Cursor
- ChatHub
- COZE
- FastGPT
- cline
- dify
- gptme
- Immersive Translation
- Lobe-Chat
- Zotero
- LangChain
- AnythingLLM
- Eudic Translation
- OpenAI Translator
- ChatAll Translation
- Pot Translation
- GPT Academic Optimization (gpt_academic)
- NEXT CHAT (ChatGPT Next Web)
- Obsidian's Text Generator Plugin
- Open WebUI
- avante.nvim
- librechat
- Lazy Customer Service
- utools-ChatGPT Friend
- IntelliJ Translation Plugin
- n8n
Generate 3.0 (text to image)
Testing
POST
https://api.cometapi.com/ideogram/v1/ideogram-v3/generate
Maintainer:Not configured
See official documentation for specific parameters: https://developer.ideogram.ai/api-reference/api-reference/generate-v3
The URL of the returned image is valid for 24 hours, after which the image will not be accessible.
Request
Header Params
Authorization
string
optional
Example:
{{api-key}}
accept
string
optional
Example:
application/json
content-type
string
optional
Example:
application/json
Body Params application/json
prompt
string
required
rendering_speed
string
optional
Example
{
"prompt": "A serene tropical beach scene. Dominating the foreground are tall palm trees with lush green leaves, standing tall against a backdrop of a sandy beach. The beach leads to the azure waters of the sea, which gently kisses the shoreline. In the distance, there is an island or landmass with a silhouette of what appears to be a lighthouse or tower. The sky above is painted with fluffy white clouds, some of which are tinged with hues of pink and orange, suggesting either a sunrise or sunset."
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.cometapi.com/ideogram/v1/ideogram-v3/generate' \
--header 'Authorization: {{api-key}}' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data-raw '{
"prompt": "A serene tropical beach scene. Dominating the foreground are tall palm trees with lush green leaves, standing tall against a backdrop of a sandy beach. The beach leads to the azure waters of the sea, which gently kisses the shoreline. In the distance, there is an island or landmass with a silhouette of what appears to be a lighthouse or tower. The sky above is painted with fluffy white clouds, some of which are tinged with hues of pink and orange, suggesting either a sunrise or sunset."
}'
Responses
🟢200OK
application/json
Body
created
string
required
data
array [object {6}]
required
prompt
string
optional
resolution
string
optional
is_image_safe
boolean
optional
seed
integer
optional
url
string
optional
style_type
string
optional
Example
{
"created": "2000-01-23 04:56:07+00:00",
"data": [
{
"prompt": "A photo of a cat sleeping on a couch.",
"resolution": "1024x1024",
"is_image_safe": true,
"seed": 12345,
"url": "https://ideogram.ai/api/images/ephemeral/xtdZiqPwRxqY1Y7NExFmzB.png?exp=1743867804&sig=e13e12677633f646d8531a153d20e2d3698dca9ee7661ee5ba4f3b64e7ec3f89",
"style_type": "GENERAL"
}
]
}