Skip to content

非公式本サイトは非公式の日本語ドキュメントであり、Cloudflare 公式サイトではありません。最新情報はdevelopers.cloudflare.comをご確認ください。

Ideogram

最終更新 Markdown で表示Agent セットアップ

Ideogram は、テキスト描画と画質に優れた、高度なテキストから画像への生成モデルを提供します。

エンドポイント

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

前提条件

Ideogram へリクエストするときは、次を用意してください。

  • AI Gateway の Account ID。
  • AI 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);

役に立ちましたか?