模型 PROMPTS

ideogram-v3-text-to-image Prompts — 6 个精选示例

通过 RunAPI 使用 ideogram-v3-text-to-image 的示例。复制 prompt 后,可在 Claude Code、Codex、Cursor、Windsurf 或后端 API 中使用。

模型

ideogram-v3-text-to-image

模态
图像
提供方
Ideogram
Endpoint
Text To Image
查看模型详情和定价 →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 prompt:生成一张图像:"A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 prompt:生成一张图像:"A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 prompt:生成一张图像:"A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 prompt:生成一张图像:"A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
}
JSON
import { IdeogramV3Client } from "@runapi.ai/ideogram-v3";

const client = new IdeogramV3Client({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToImage.run({
  "model": "ideogram-v3-text-to-image",
  "prompt": "A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
});
console.log(result.id);
require "runapi/ideogram_v3"

client = RunApi::IdeogramV3::Client.new
result = client.text_to_image.run(
  model: "ideogram-v3-text-to-image",
  prompt: "A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"model\":\"ideogram-v3-text-to-image\",\"prompt\":\"A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere.\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/ideogram_v3/text_to_image", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
ideogram-v3-text-to-image /api/v1/ideogram_v3/text_to_image 获取 API Key
IM
图像
Poster and Graphic Design ideogram-v3-text-to-image

A stylish movie poster with the title 'MIDNIGHT ECHO' in bol

A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A stylish movie poster with the title 'MIDNIGHT ECHO' in bold art deco typography at the top. A silhouetted figure standing in a neon-lit rain-soaked alley below. 'Coming Summer 2026' in smaller text at the bottom. Moody teal and magenta color scheme. Dramatic backlighting creating long shadows. Film noir atmosphere."
}
JSON
IM
图像
Logo and Brand Design ideogram-v3-text-to-image

Clean business card design for 'NORDIC BREW' coffee roasters

Clean business card design for 'NORDIC BREW' coffee roasters. The company name in elegant serif typography centered on the card. A minimalist mountain icon above the name. Contact details in small sans-serif font below. Cream card stock texture with dark brown ink. Professional print design style. No extra text or decoration.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "Clean business card design for 'NORDIC BREW' coffee roasters. The company name in elegant serif typography centered on the card. A minimalist mountain icon above the name. Contact details in small sans-serif font below. Cream card stock texture with dark brown ink. Professional print design style. No extra text or decoration."
}
JSON
IM
图像
Logo and Brand Design ideogram-v3-text-to-image

A flat vector logo of a lion head, minimal geometric shapes,

A flat vector logo of a lion head, minimal geometric shapes, clean lines, perfect symmetry, inspired by Paul Rand's design philosophy, on a pure white background. Bold, simple, memorable. Single color: deep navy blue. No gradients, no shadows, no text.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A flat vector logo of a lion head, minimal geometric shapes, clean lines, perfect symmetry, inspired by Paul Rand's design philosophy, on a pure white background. Bold, simple, memorable. Single color: deep navy blue. No gradients, no shadows, no text."
}
JSON
IM
图像
Logo and Brand Design ideogram-v3-text-to-image

A logo design for a local football team called 'Rhinos' in g

A logo design for a local football team called 'Rhinos' in green, blue, and white. The main graphic shows a strong, stylized rhino head viewed from a three-quarter angle, with sharp angular lines and a bold determined expression. The word 'Rhinos' appears in large, blocky sans-serif letters beneath the icon. White background, no scene or setting. Clean vector-based lines with sharp edges, modern sporty look.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A logo design for a local football team called 'Rhinos' in green, blue, and white. The main graphic shows a strong, stylized rhino head viewed from a three-quarter angle, with sharp angular lines and a bold determined expression. The word 'Rhinos' appears in large, blocky sans-serif letters beneath the icon. White background, no scene or setting. Clean vector-based lines with sharp edges, modern sporty look."
}
JSON
IM
图像
Logo and Brand Design ideogram-v3-text-to-image

A captivating vintage-style calligraphy artwork featuring a

A captivating vintage-style calligraphy artwork featuring a woman's silhouette with intricately crafted hair, the hair composed entirely of elegant flowing script that reads 'Take care of your hair naturally.' The brand name 'Herbal Shampoo' is gracefully written in a fine sans-serif font below. Soft off-white parchment background enhances the rich, vintage feel.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A captivating vintage-style calligraphy artwork featuring a woman's silhouette with intricately crafted hair, the hair composed entirely of elegant flowing script that reads 'Take care of your hair naturally.' The brand name 'Herbal Shampoo' is gracefully written in a fine sans-serif font below. Soft off-white parchment background enhances the rich, vintage feel."
}
JSON
IM
图像
typography ideogram-v3-text-to-image

Hand-lettered coffee shop poster

A vintage-style coffee shop poster with hand-lettered typography reading 'FRESHLY ROASTED SINCE 1987'. The text is arranged in a decorative arch layout with ornamental flourishes and small coffee bean illustrations between lines. Warm cream paper texture background with dark brown ink and subtle rust-red accent color on the year. Style references classic American letterpress printing with slight ink bleed on the edges of each character. Dimensions suitable for an A3 wall print.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/ideogram_v3/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "ideogram-v3-text-to-image",
  "prompt": "A vintage-style coffee shop poster with hand-lettered typography reading 'FRESHLY ROASTED SINCE 1987'. The text is arranged in a decorative arch layout with ornamental flourishes and small coffee bean illustrations between lines. Warm cream paper texture background with dark brown ink and subtle rust-red accent color on the year. Style references classic American letterpress printing with slight ink bleed on the edges of each character. Dimensions suitable for an A3 wall print."
}
JSON
常见问题

使用 ideogram-v3-text-to-image prompts

%{model} 是什么?

%{model} 是 RunAPI 统一模型目录中的模型。这些 prompts 展示了 agent 和后端服务可以复用的实际输入模式。

如何使用这些 prompts?

安装 RunAPI MCP Server 后,复制任意 prompt 并粘贴到 Claude Code、Codex、Cursor 或 Windsurf。开发者也可以复制 API 示例直接调用。

浏览这些 prompts 要付费吗?

浏览和复制 prompt 示例是免费的。只有当你使用 API key 调用 RunAPI 模型生成内容时,才会产生费用。

这些 prompts 可以用于生产环境吗?

可以。把每个 prompt 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。