跳转到内容
搜索文档

Ideogram

最后更新 查看 MarkdownAgent 设置

Ideogram 提供先进的文本生成图像模型,具备出色的文本渲染能力和视觉质量。

端点

https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/ideogram

前提条件

向 Ideogram 发送请求时,请确保具备以下条件:

  • 你的 AI Gateway Account ID。
  • 你的 AI Gateway gateway 名称。
  • 有效的 Ideogram API 密钥。
  • 要使用的 Ideogram 模型名称(例如 V_3)。

示例

cURL

Example fetch requestbash
curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/ideogram/v1/ideogram-v3/generate \
  --header 'Api-Key: {ideogram_api_key}' \
  --header 'Content-Type: application/json' \
  --data '{
    "prompt": "A serene landscape with mountains and a lake at sunset",
    "model": "V_3"
  }'

使用 JavaScript

JavaScriptjs
const accountId = "{account_id}";
const gatewayId = "{gateway_id}";
const ideogramApiKey = "{ideogram_api_key}";
const baseURL = `https://gateway.ai.cloudflare.com/v1/${accountId}/${gatewayId}/ideogram`;

const response = await fetch(`${baseURL}/v1/ideogram-v3/generate`, {
  method: "POST",
  headers: {
    "Api-Key": ideogramApiKey,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    prompt: "A serene landscape with mountains and a lake at sunset",
    model: "V_3",
  }),
});

const result = await response.json();
console.log(result);

这篇文档对您有帮助吗?