POST
/
ideogram
/
describe
curl -X POST https://api.example.com/ideogram/describe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/image.png"
  }'
{
  "descriptions": [
    "A beautiful sunset over mountains with orange and purple sky",
    "Scenic mountain landscape at dusk with vibrant colors"
  ]
}
Describe image content and generate prompts using the Ideogram Describe feature.

Request Parameters

image
string
required
Image to describe.
curl -X POST https://api.example.com/ideogram/describe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/image.png"
  }'
{
  "descriptions": [
    "A beautiful sunset over mountains with orange and purple sky",
    "Scenic mountain landscape at dusk with vibrant colors"
  ]
}