{"@context":"https://schema.org","@type":"NewsArticle","generatedAt":"2026-07-28T06:20:51.496Z","headline":"OpenRouter 新增图像生成模型专用 API 端点","description":"OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。该平台同时公布了两种任务的完整接口合约，并修复了此前出现的\"no endpoints found\"错误。","url":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/","mainEntityOfPage":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/","datePublished":"2026-07-27T00:00:00.000Z","dateModified":"2026-07-27T00:00:00.000Z","inLanguage":"zh-CN","publisher":{"@type":"NewsMediaOrganization","name":"Aioga","url":"https://www.aioga.com"},"citation":["https://openrouter.ai/blog/tutorials/image-generation-models","https://aihot.virxact.com/items/cms3fuyms00mtrondudz5pjw8"],"canonicalUrl":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/","directAnswer":{"@type":"Answer","text":"Aioga 编辑摘要：OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。 Aioga 将其归入「技巧观点」方向，重点关注它对真实使用和行业竞争的影响。","url":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/","dateCreated":"2026-07-27T00:00:00.000Z","author":{"@type":"Organization","@id":"https://www.aioga.com/authors/aioga-editorial/#editorial-team","name":"Aioga Editorial Team","url":"https://www.aioga.com/authors/aioga-editorial/"}},"evidence":[{"@type":"CreativeWork","name":"openrouter.ai source article","url":"https://openrouter.ai/blog/tutorials/image-generation-models","datePublished":"2026-07-27T00:00:00.000Z","provider":{"@type":"Organization","name":"openrouter.ai","url":"https://openrouter.ai/blog/tutorials/image-generation-models"}},{"@type":"CreativeWork","name":"AIHot archive record","url":"https://aihot.virxact.com/items/cms3fuyms00mtrondudz5pjw8","datePublished":"2026-07-27T00:00:00.000Z","provider":{"@type":"Organization","name":"AIHot","url":"https://aihot.virxact.com/items/cms3fuyms00mtrondudz5pjw8"}}],"aggregationSource":"OpenRouter：Announcements（RSS）","originalPublisher":{"name":"openrouter.ai","url":"https://openrouter.ai/blog/tutorials/image-generation-models"},"article":{"id":"cms3fuyms00mtrondudz5pjw8","slug":"cms3fuyms00mtrondudz5pjw8","url":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/","title":"OpenRouter 新增图像生成模型专用 API 端点","title_en":"Image Generation Models on OpenRouter","summary":"OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。该平台同时公布了两种任务的完整接口合约，并修复了此前出现的\"no endpoints found\"错误。","source":"OpenRouter：Announcements（RSS）","sourceUrl":"https://openrouter.ai/blog/tutorials/image-generation-models","aiHotUrl":"https://aihot.virxact.com/items/cms3fuyms00mtrondudz5pjw8","publishedAt":"2026-07-27T00:00:00.000Z","category":"技巧观点","score":60,"selected":false,"articleBody":["You wire up an image generation provider, get it working, and then a week later, you need to read an image. Maybe OCR on uploaded receipts, a quick object-detection pass before saving an asset, or alt-text generation for accessibility. That’s a different job. With most providers, it means a second SDK, a second API key, and a second billing relationship.","On OpenRouter：https://openrouter.ai/, both jobs run through one base URL, https://openrouter.ai/api/v1 , with one API key and one bill. To generate an image, POST a prompt to /images . To read one, send it to a vision model on /chat/completions .","The model catalog：https://openrouter.ai/docs/guides/overview/models behind those endpoints covers the major image labs, and provider routing and failover work on image calls the way they do on chat calls.","Yes, through one base URL and one API key. To generate an image, POST a prompt to the dedicated Image API. To read one, send it to a vision model on the standard Chat Completions endpoint：https://openrouter.ai/docs/quickstart.","An app that already generates images can add vision capability with the same key and billing account. Only the endpoint and the request shape change.","The catalog includes Google (the Gemini image family), OpenAI (GPT Image), Black Forest Labs (FLUX), xAI (Grok Imagine), ByteDance (Seedream), Microsoft (MAI-Image), Recraft, Krea, and Sourceful (Riverflow). Specific model names shift with every release, so for the current lineup, capabilities, and per-model pricing, use the image model catalog：https://openrouter.ai/collections/image-models.","Send a POST to /api/v1/images with a model and a prompt. The images come back in the data array as base64.","Each entry in data carries the image as base64 in b64_json , plus a media_type field (typically image/png ; Recraft vector models can return image/svg+xml ). The usage field reports token counts and the request’s cost. Request up to 10 images per call with n (not every provider supports n > 1 ), and iterate data rather than hardcoding index 0.","The request body takes image-specific fields directly:","Check the model’s supported_parameters in GET /api/v1/images/models for what each endpoint accepts. Providers can also take provider-specific options through provider.options , and models with supports_streaming: true can stream partial images over SSE with stream: true . The image generation doc：https://openrouter.ai/docs/guides/overview/multimodal/image-generation covers the full request schema.","Send a messages array containing a text part and an image_url part to a vision model on /chat/completions . You get a text completion back. The image_url accepts either a public URL or a base64 data URL.","The response comes back as a standard text completion, with the model’s answer in choices[0].message.content .","For PDFs, use the file content type rather than rendering pages to images first. OpenRouter also supports audio and video inputs through the same endpoint, using the same pattern of swapping the model and content type. The multimodal overview：https://openrouter.ai/docs/guides/overview/multimodal/overview covers every input type.","Use generation when the output is a new visual asset: mockups, product shots, illustrations, marketing creative, anything that begins as a text prompt and ends as pixels.","Use understanding when you already have an image and need information from it: OCR on receipts and forms, accessibility alt-text, object or defect detection on a production line, classification, or plain description.","The endpoint you call tells us which job you’re doing. Generation posts to /api/v1/images ; understanding posts to /chat/completions . Both use the same API key and land on the same bill.","There’s a third option for apps where the conversation itself should decide when an image is needed. The openrouter:image_generation server tool (beta) lets a chat model generate an image mid-conversation without your application code making that call explicitly. Add { \"type\": \"openrouter:image_generation\" } to the request’s tools array, and the model determines when to invoke it. It defaults to openai/gpt-5-image . The server-tool doc：https://openrouter.ai/docs/guides/features/server-tools/image-generation covers the available parameters.","Yes. On /api/v1/images , the provider object accepts order , only , ignore , sort , and allow_fallbacks . An image model served by more than one provider can fail over between them if the first is unavailable or slow.","This request prefers one provider and falls back to the next if it fails. Vision calls on /chat/completions take the full chat provider object：https://openrouter.ai/docs/guides/routing/provider-selection, including data_collection: \"deny\" .","You pay the catalog rate with no markup from us：https://openrouter.ai/pricing. Under Zero Completion Insurance, an image call that fails over and never completes isn’t billed. For how the router picks a provider, see how OpenRouter model routing works：https://openrouter.ai/blog/insights/model-routing/.","Not at the moment. The free tier：https://openrouter.ai/pricing covers models with the :free suffix at 50 requests/day and 20 RPM with no credit card (1,000 requests/day with $10 or more in credits), and no image generation model currently carries that suffix. The free pool changes as models come and go, so it’s worth re-checking /models?output_modalities=image：https://openrouter.ai/models?output_modalities=image.","Generation therefore draws on your credit balance, but testing costs little. Per-image pricing on low-cost models starts around a cent, and each response’s usage.cost reports what the request cost. The free models guide：https://openrouter.ai/blog/tutorials/free-llm-apis-compared/ covers the free tier’s mechanics for text models.","This error means you sent an image_url to a model that doesn’t accept image input. We auto-filter available models by request content：https://openrouter.ai/docs/guides/overview/multimodal/overview, so when the model you named has no available endpoint that supports images, the request fails with this error instead of silently dropping the image.","Sibling errors like no endpoints found that support tool use and the data-policy variants work the same way. The error names the requirement that didn’t match; relax it or pick a model and provider combination that meets it.","Start with the image model catalog：https://openrouter.ai/collections/image-models, test a prompt in the Chatroom, and wire the call with the snippets above.","Yes, through one base URL and one API key. To generate an image, POST a model and a prompt to https://openrouter.ai/api/v1/images . To read one, send it as an image_url to a vision model on /chat/completions . Both land on the same bill.","The catalog includes Google (Gemini image family), OpenAI (GPT Image), Black Forest Labs (FLUX), xAI (Grok Imagine), ByteDance (Seedream), Microsoft (MAI-Image), Recraft, Krea, and Sourceful (Riverflow). Filter /models?output_modalities=image：https://openrouter.ai/models?output_modalities=image or browse the image model collection：https://openrouter.ai/collections/image-models for the current lineup and pricing.","You sent an image_url to a model that doesn’t accept image input. Confirm the model’s input_modalities include image , find a vision-capable model with GET /api/v1/models?input_modalities=image , and update the model string in your request.","Not at the moment. The free tier (50 requests/day, 20 RPM, no credit card) covers models with the :free suffix, and no image generation model currently carries it, so generation draws on your credit balance. Low-cost models start around a cent per image.","Yes. The /api/v1/images endpoint accepts provider.order , only , ignore , sort , and allow_fallbacks , so ordering, cost/latency sort, and cross-provider failover work the same way as on chat. Vision calls on /chat/completions take the full chat provider object, including data_collection: \"deny\" .","In the response’s data array; each entry has b64_json with the base64-encoded image bytes and a media_type field (typically image/png ). Request up to 10 images per call with the n parameter and iterate data rather than hardcoding index 0."],"articleImages":[{"sourceUrl":"https://openrouter.ai/blog/images/image-generation-models.png","alt":"Image Generation Models on OpenRouter","afterParagraph":0,"url":"/media/articles/cms3fuyms00mtrondudz5pjw8/67915d311010fec0.png"},{"sourceUrl":"https://openrouter.ai/blog/images/image-generation-endpoint-map.png","alt":"Diagram of one API base URL splitting into POST /api/v1/images for generating images and POST /api/v1/chat/completions for understanding images","afterParagraph":4,"url":"/media/articles/cms3fuyms00mtrondudz5pjw8/7b788a960c4eac5e.png"}],"mediaStatus":"ok","articleBodyZh":["你接入一个图像生成提供商，让它正常工作，然后一周后，你需要读取一张图像。也许是对上传的收据进行 OCR，或者在保存资源之前快速进行一次对象检测，或者生成可访问性的替代文本。这是不同的工作。对于大多数提供商而言，这意味着需要第二个 SDK、第二个 API 密钥和第二个计费关系。","在 OpenRouter：https://openrouter.ai/ 上，这两项工作都通过一个基础 URL 运行：https://openrouter.ai/api/v1，只需一个 API 密钥和一个账单。生成图像时，将提示 POST 到 /images。读取图像时，将其发送到 /chat/completions 上的视觉模型。","这些端点背后的模型目录：https://openrouter.ai/docs/guides/overview/models 涵盖了主要的图像实验室，并且图像调用的提供商路由和故障切换与聊天调用的方式相同。","是的，通过一个基础 URL 和一个 API 密钥。生成图像时，将提示 POST 到专用的图像 API。读取图像时，将其发送到标准聊天完成端点的视觉模型：https://openrouter.ai/docs/quickstart。","一个已经生成图像的应用可以使用相同的密钥和计费账户添加视觉功能。唯一变化的是端点和请求格式。","目录中包括 Google（Gemini 图像系列）、OpenAI（GPT 图像）、Black Forest Labs（FLUX）、xAI（Grok Imagine）、字节跳动（Seedream）、微软（MAI-Image）、Recraft、Krea，以及 Sourceful（Riverflow）。具体模型名称会随每次发布而变化，因此要查看当前阵容、功能和每个模型的定价，请使用图像模型目录：https://openrouter.ai/collections/image-models。","向 /api/v1/images 发送一个带有模型和提示的 POST 请求。图像会以 base64 的形式返回在 data 数组中。","data 中的每个条目都包含以 b64_json 形式的图像，以及一个 media_type 字段（通常是 image/png；Recraft 矢量模型可以返回 image/svg+xml）。usage 字段报告 token 数量和请求成本。每次请求最多可生成 10 张图像，使用 n（并非每个提供商都支持 n > 1），并遍历 data 而不是硬编码索引 0。","请求体可直接使用图像特定字段：","在 GET /api/v1/images/models 中检查模型的 supported_parameters，以了解每个端点支持的参数。提供商还可以通过 provider.options 接受特定于提供商的选项，而 supports_streaming: true 的模型可以通过 SSE 使用 stream: true 流式传输部分图像。图像生成文档：https://openrouter.ai/docs/guides/overview/multimodal/image-generation 覆盖了完整的请求结构。","向 /chat/completions 上的视觉模型发送包含 text 部分和 image_url 部分的 messages 数组。你将收到文本完成返回。image_url 可以接受公共 URL 或 base64 数据 URL。","响应以标准文本完成返回，模型的答案在 choices[0].message.content 中。","对于 PDF，使用文件内容类型，而不是先将页面渲染成图像。OpenRouter 还支持通过相同端点的音频和视频输入，使用更换模型和内容类型的相同模式。多模态概述文档：https://openrouter.ai/docs/guides/overview/multimodal/overview 覆盖了所有输入类型。","当输出是新的视觉资产时使用 generation：原型、产品图片、插图、营销创意，任何以文本提示开始并以像素结束的内容。","当你已经有图片并需要从中获取信息时使用 understanding：对收据和表格进行 OCR、辅助功能的替代文本、生产线上的物体或缺陷检测、分类或简单描述。","你调用的端点告诉我们你正在执行哪种任务。Generation 发布到 /api/v1/images；Understanding 发布到 /chat/completions。两者都使用相同的 API 密钥，并计入相同账单。","对于需要在对话中决定何时生成图像的应用，还有第三种选择。openrouter:image_generation 服务器工具（测试版）允许聊天模型在对话中生成图像，而无需应用代码显式调用。将 { \"type\": \"openrouter:image_generation\" } 添加到请求的 tools 数组中，模型将决定何时调用。默认使用 openai/gpt-5-image。服务器工具文档：https://openrouter.ai/docs/guides/features/server-tools/image-generation 覆盖了可用参数。","是的。在 /api/v1/images 上，provider 对象接受 order、only、ignore、sort 和 allow_fallbacks。如果一个图像模型由多个提供者提供，当第一个不可用或响应缓慢时，可以在它们之间切换。","此请求会优先选择一个提供者，如果失败则回退到下一个。对 /chat/completions 的视觉调用会使用完整的聊天提供者对象：https://openrouter.ai/docs/guides/routing/provider-selection，包括 data_collection: \"deny\"。","您按照目录价格支付，我们不加价：https://openrouter.ai/pricing。在零完成保险（Zero Completion Insurance）下，图像调用回退但从未完成的情况下不收费。有关路由器如何选择提供者，请参阅 OpenRouter 模型路由的工作原理：https://openrouter.ai/blog/insights/model-routing/。","目前没有。免费层：https://openrouter.ai/pricing 覆盖带有 :free 后缀的模型，每天 50 次请求，20 次每分钟，无需信用卡（余额有 10 美元或以上时每天 1000 次请求），目前没有图像生成模型带有该后缀。免费池随着模型的变化而变化，因此值得重新检查 /models?output_modalities=image：https://openrouter.ai/models?output_modalities=image。","因此生成调用会消耗您的信用额度，但测试成本很低。低成本模型的每张图片定价大约从一美分起，每次响应的 usage.cost 会报告请求花费。免费模型指南：https://openrouter.ai/blog/tutorials/free-llm-apis-compared/ 介绍了文本模型免费层的机制。","此错误意味着您向不接受图像输入的模型发送了 image_url。我们会根据请求内容自动过滤可用模型：https://openrouter.ai/docs/guides/overview/multimodal/overview，因此当您命名的模型没有支持图像的可用端点时，请求会以此错误失败，而不是默默忽略图像。","类似错误如未找到支持工具使用的端点和数据策略相关变体的错误也是相同原理。错误会指出未匹配的要求；放宽要求或选择符合要求的模型和提供者组合。","从图像模型目录开始：https://openrouter.ai/collections/image-models，在聊天室测试提示，并使用上述代码片段调用接口。","是的，通过一个基础URL和一个API密钥。要生成图片，请发布模型和提示 https://openrouter.ai/api/v1/images。要阅读，可以把它作为image_url发送给 /chat/finishs 上的愿景模型。两者都在同一张法案上。","目录包括Google（Gemini图片家族）、OpenAI（GPT图片）、Black Forest Labs（FLUX）、xAI（Grok Imagine）、字节跳动（Seedream）、Microsoft（MAI-Image）、Recraft、Krea和Sourceful（Riverflow）。筛选/models？output_modalities=image：https：//openrouter.ai/models？output_modalities=image，或者浏览图片模型合集：https：//openrouter.ai/collections/image-models，了解当前产品线和价格。","你给一个不接受图像输入的模型发送了image_url。确认模型input_modalities包含图像，找到支持视觉的模型，使用 GET /api/v1/models？input_modalities=image，然后更新你请求中的模型字符串。","现在没有。免费版（每天50次请求，20转，不使用信用卡）涵盖带有：free 后缀的模型，目前没有图片生成模型支持，因此生成是基于你的信用余额。低价模型起价约为每张图片一美分。","是的。/api/v1/images 端点只接受 provider.order，仅接受 、 忽略、排序 和 allow_fallbacks，因此订购、成本/延迟排序和跨提供商故障切换的工作方式与聊天时相同。/chat/completions 上的 Vision 调用会使用完整的聊天提供者对象，包括data_collection：“拒绝”。","在响应的数据阵列中;每个条目都有b64_json，包含 base64 编码的图像字节和一个 media_type 字段（通常是 image/png）。每次调用时，最多请求10张带有n参数的图片，并以迭代方式处理数据，而不是硬编码索引0。"],"translationStatus":"translated","bodyOrigin":"source-page","editorial":{"summary":"Aioga 编辑摘要：OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。 Aioga 将其归入「技巧观点」方向，重点关注它对真实使用和行业竞争的影响。","background":"背景分析：模型与研究类动态需要结合能力边界、开放方式、成本、可用性和真实任务表现判断，单项指标领先不等于已经形成稳定采用。","viewpoint":"Aioga 判断：这条动态更适合作为行业观察信号，当前信息足以建立线索，但不足以推导长期结论。","implications":"影响分析：对相关团队而言，短期应先核对来源、可用范围和实际成本，再判断是否值得接入或跟进。","nextStep":"后续观察：继续观察官方文档、实际可用性、价格变化、开发者反馈和竞品回应。","evidenceRefs":["title","summary","articleBody"],"confidence":"medium","status":"published","aiGenerated":false,"autoApproved":true,"generatedBy":"rule-safe-fallback","generatedAt":"2026-07-28T06:29:10.482Z","sourceHash":"ab3ed5878714e2f9","validation":{"passed":true,"mode":"rule-safe-fallback","checks":["schema","length","source-attribution","no-html"]}},"tags":["技巧观点","OpenRouter：Announcements（RSS）"],"translations":{"zh-CN":{"title":"OpenRouter 新增图像生成模型专用 API 端点","summary":"OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。该平台同时公布了两种任务的完整接口合约，并修复了此前出现的\"no endpoints found\"错误。","category":"技巧观点","source":"openrouter.ai","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter 新增图像生成模型专用 API 端点 - Aioga AI资讯","description":"OpenRouter 通过专用 `/api/v1/images` 端点提供图像生成模型服务，图像理解仍通过 `/chat/completions` 端点完成，两者共用同一 API Key 和计费体系。该平台同时公布了两种任务的完整接口合约，并修复了此前出现的\"no endpoints found\"错误。","url":"https://www.aioga.com/news/cms3fuyms00mtrondudz5pjw8/"},"en":{"title":"OpenRouter adds a dedicated API endpoint for image generation models","summary":"OpenRouter provides image generation model services through a dedicated `/api/v1/images` endpoint, while image understanding is still conducted through the `/chat/completions` endpoint, both sharing the same API Key and billing system. The platform has also released the complete interface contracts for both tasks and fixed the previously occurring \"no endpoints found\" error.","category":"Insights","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter adds a dedicated API endpoint for image generation models - Aioga AI News","description":"OpenRouter provides image generation model services through a dedicated `/api/v1/images` endpoint, while image understanding is still conducted through the `/chat/completions` endp...","url":"https://www.aioga.com/en/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:44:37.583Z"},"ja":{"title":"OpenRouter に画像生成モデル専用の API エンドポイントを追加","summary":"OpenRouterは専用の`/api/v1/images`エンドポイントを通じて画像生成モデルのサービスを提供し、画像理解は依然として`/chat/completions`エンドポイントで行われ、両者は同じAPIキーと課金体系を共有しています。このプラットフォームは同時に両タスクの完全なインターフェース契約を公開し、以前発生していた「no endpoints found」エラーを修正しました。","category":"ヒントと視点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter に画像生成モデル専用の API エンドポイントを追加 - Aioga AIニュース","description":"OpenRouterは専用の`/api/v1/images`エンドポイントを通じて画像生成モデルのサービスを提供し、画像理解は依然として`/chat/completions`エンドポイントで行われ、両者は同じAPIキーと課金体系を共有しています。このプラットフォームは同時に両タスクの完全なインターフェース契約を公開し、以前発生していた「no endpoint...","url":"https://www.aioga.com/ja/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:44:45.616Z"},"ko":{"title":"OpenRouter 이미지 생성 모델 전용 API 엔드포인트 추가","summary":"OpenRouter는 전용 `/api/v1/images` 엔드포인트를 통해 이미지 생성 모델 서비스를 제공하며, 이미지 이해는 여전히 `/chat/completions` 엔드포인트를 통해 수행되며, 두 엔드포인트는 동일한 API 키와 과금 체계를 공유합니다. 이 플랫폼은 동시에 두 가지 작업의 완전한 인터페이스 계약을 공개했으며, 이전에 발생했던 'no endpoints found' 오류를 수정했습니다.","category":"인사이트","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter 이미지 생성 모델 전용 API 엔드포인트 추가 - Aioga AI 뉴스","description":"OpenRouter는 전용 `/api/v1/images` 엔드포인트를 통해 이미지 생성 모델 서비스를 제공하며, 이미지 이해는 여전히 `/chat/completions` 엔드포인트를 통해 수행되며, 두 엔드포인트는 동일한 API 키와 과금 체계를 공유합니다. 이 플랫폼은 동시에 두 가지 작업의 완전한 인터페이스 계약을 공...","url":"https://www.aioga.com/ko/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:45:33.939Z"},"es":{"title":"OpenRouter añade un endpoint de API dedicado al modelo de generación de imágenes","summary":"OpenRouter ofrece servicios de modelos de generación de imágenes a través del endpoint dedicado `/api/v1/images`, mientras que la comprensión de imágenes todavía se realiza a través del endpoint `/chat/completions`, ambos comparten la misma clave API y sistema de facturación. La plataforma también ha publicado contratos de interfaz completos para ambos tipos de tareas y ha corregido el error \"no endpoints found\" que había ocurrido anteriormente.","category":"Ideas","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter añade un endpoint de API dedicado al modelo de generación de imágenes - Aioga Noticias de IA","description":"OpenRouter ofrece servicios de modelos de generación de imágenes a través del endpoint dedicado `/api/v1/images`, mientras que la comprensión de imágenes todavía se realiza a travé...","url":"https://www.aioga.com/es/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:45:31.998Z"},"fr":{"title":"OpenRouter ajoute un point de terminaison API dédié aux modèles de génération d'images","summary":"OpenRouter fournit des services de modèles de génération d'images via un point de terminaison dédié `/api/v1/images`, tandis que la compréhension des images se fait toujours via le point de terminaison `/chat/completions`. Les deux partagent la même clé API et le même système de facturation. La plateforme a également publié le contrat complet des interfaces pour les deux types de tâches et a corrigé l'erreur précédente \"no endpoints found\".","category":"Analyses","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter ajoute un point de terminaison API dédié aux modèles de génération d'images - Aioga Actualités IA","description":"OpenRouter fournit des services de modèles de génération d'images via un point de terminaison dédié `/api/v1/images`, tandis que la compréhension des images se fait toujours via le...","url":"https://www.aioga.com/fr/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:46:14.850Z"},"de":{"title":"OpenRouter fügt einen speziellen API-Endpunkt für Bildgenerierungsmodelle hinzu","summary":"OpenRouter bietet Bildgenerierungsmodell-Dienste über den speziellen Endpunkt `/api/v1/images` an, die Bildverarbeitung erfolgt weiterhin über den Endpunkt `/chat/completions`, beide verwenden denselben API-Schlüssel und dasselbe Abrechnungssystem. Die Plattform hat gleichzeitig den vollständigen Schnittstellenvertrag für beide Aufgaben veröffentlicht und den zuvor aufgetretenen Fehler \"no endpoints found\" behoben.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter fügt einen speziellen API-Endpunkt für Bildgenerierungsmodelle hinzu - Aioga KI-News","description":"OpenRouter bietet Bildgenerierungsmodell-Dienste über den speziellen Endpunkt `/api/v1/images` an, die Bildverarbeitung erfolgt weiterhin über den Endpunkt `/chat/completions`, bei...","url":"https://www.aioga.com/de/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:46:13.537Z"},"pt-BR":{"title":"OpenRouter adiciona endpoint de API dedicado a modelos de geração de imagens","summary":"OpenRouter fornece serviços de modelo de geração de imagens por meio do endpoint dedicado `/api/v1/images`, enquanto a compreensão de imagens ainda é realizada pelo endpoint `/chat/completions`. Ambos compartilham a mesma chave de API e sistema de cobrança. A plataforma também divulgou contratos de API completos para os dois tipos de tarefas e corrigiu o erro anterior \"no endpoints found\".","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter adiciona endpoint de API dedicado a modelos de geração de imagens - Aioga Notícias de IA","description":"OpenRouter fornece serviços de modelo de geração de imagens por meio do endpoint dedicado `/api/v1/images`, enquanto a compreensão de imagens ainda é realizada pelo endpoint `/chat...","url":"https://www.aioga.com/pt-BR/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:46:54.733Z"},"ru":{"title":"OpenRouter добавил специальный API-эндпоинт для модели генерации изображений","summary":"OpenRouter предоставляет сервис моделей генерации изображений через специальную конечную точку `/api/v1/images`, обработка изображений по-прежнему выполняется через конечную точку `/chat/completions`, обе используют один и тот же API ключ и систему тарификации. Платформа также опубликовала полный контракт интерфейса для обоих видов задач и исправила ранее возникшую ошибку \"no endpoints found\".","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter добавил специальный API-эндпоинт для модели генерации изображений - Aioga Новости ИИ","description":"OpenRouter предоставляет сервис моделей генерации изображений через специальную конечную точку `/api/v1/images`, обработка изображений по-прежнему выполняется через конечную точку...","url":"https://www.aioga.com/ru/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:47:01.350Z"},"ar":{"title":"OpenRouter أضاف نقطة نهاية API مخصصة لنماذج توليد الصور","summary":"يوفر OpenRouter خدمة نماذج توليد الصور من خلال نقطة النهاية المخصصة `/api/v1/images`، بينما يظل فهم الصور يتم عبر نقطة النهاية `/chat/completions`، وتستخدم كلتا الخدمتين نفس مفتاح API ونظام الفوترة. كما نشر هذا المنصة العقد الكاملة لواجهات كلتا المهمتين، وأصلح الخطأ السابق 'no endpoints found'.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter أضاف نقطة نهاية API مخصصة لنماذج توليد الصور - Aioga أخبار الذكاء الاصطناعي","description":"يوفر OpenRouter خدمة نماذج توليد الصور من خلال نقطة النهاية المخصصة `/api/v1/images`، بينما يظل فهم الصور يتم عبر نقطة النهاية `/chat/completions`، وتستخدم كلتا الخدمتين نفس مفتاح...","url":"https://www.aioga.com/ar/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:47:49.150Z"},"hi":{"title":"OpenRouter ने इमेज जनरेशन मॉडल के लिए विशेष API एंडपॉइंट जोड़ा","summary":"OpenRouter विशेष `/api/v1/images` एंडपॉइंट के माध्यम से इमेज जनरेशन मॉडल सेवा प्रदान करता है, जबकि इमेज समझ अभी भी `/chat/completions` एंडपॉइंट के माध्यम से पूरी होती है, दोनों एक ही API Key और बिलिंग सिस्टम साझा करते हैं। इस प्लेटफ़ॉर्म ने दोनों प्रकार के कार्यों के लिए पूर्ण इंटरफ़ेस समझौते भी प्रकाशित किए हैं और पहले दिखाई देने वाली \"no endpoints found\" त्रुटि को ठीक किया है।","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter ने इमेज जनरेशन मॉडल के लिए विशेष API एंडपॉइंट जोड़ा - Aioga AI समाचार","description":"OpenRouter विशेष `/api/v1/images` एंडपॉइंट के माध्यम से इमेज जनरेशन मॉडल सेवा प्रदान करता है, जबकि इमेज समझ अभी भी `/chat/completions` एंडपॉइंट के माध्यम से पूरी होती है, दोनों एक...","url":"https://www.aioga.com/hi/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:47:44.712Z"},"it":{"title":"OpenRouter aggiunge un endpoint API dedicato ai modelli di generazione di immagini","summary":"OpenRouter fornisce servizi di modelli di generazione di immagini tramite l'endpoint dedicato `/api/v1/images`, mentre la comprensione delle immagini avviene ancora tramite l'endpoint `/chat/completions`, entrambi condividono la stessa API Key e il sistema di fatturazione. La piattaforma ha inoltre pubblicato i contratti di interfaccia completi per entrambi i tipi di attività e ha risolto il precedente errore \"no endpoints found\".","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter aggiunge un endpoint API dedicato ai modelli di generazione di immagini - Aioga Notizie IA","description":"OpenRouter fornisce servizi di modelli di generazione di immagini tramite l'endpoint dedicato `/api/v1/images`, mentre la comprensione delle immagini avviene ancora tramite l'endpo...","url":"https://www.aioga.com/it/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:48:33.829Z"},"nl":{"title":"OpenRouter voegt een speciale API-eindpunt voor afbeeldingsgeneratiemodellen toe","summary":"OpenRouter biedt beeldgeneratiemodeldiensten via het speciale `/api/v1/images`-eindpunt, terwijl beeldbegrip nog steeds wordt uitgevoerd via het `/chat/completions`-eindpunt, beide delen dezelfde API-sleutel en factureringssysteem. Het platform heeft ook de volledige interfacecontracten voor beide taken gepubliceerd en de eerder opgetreden fout \"no endpoints found\" opgelost.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter voegt een speciale API-eindpunt voor afbeeldingsgeneratiemodellen toe - Aioga AI-nieuws","description":"OpenRouter biedt beeldgeneratiemodeldiensten via het speciale `/api/v1/images`-eindpunt, terwijl beeldbegrip nog steeds wordt uitgevoerd via het `/chat/completions`-eindpunt, beide...","url":"https://www.aioga.com/nl/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:48:34.027Z"},"tr":{"title":"OpenRouter, görüntü oluşturma modelleri için özel API uç noktası ekledi","summary":"OpenRouter, görüntü oluşturma modeli hizmetini özel `/api/v1/images` uç noktası üzerinden sunar, görüntü anlama ise hâlâ `/chat/completions` uç noktası üzerinden gerçekleştirilir, her ikisi de aynı API Anahtarı ve faturalama sistemi paylaşır. Platform aynı zamanda iki görev için de tam API sözleşmesini yayımlamış ve daha önce ortaya çıkan 'no endpoints found' hatasını düzeltmiştir.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter, görüntü oluşturma modelleri için özel API uç noktası ekledi - Aioga AI Haberleri","description":"OpenRouter, görüntü oluşturma modeli hizmetini özel `/api/v1/images` uç noktası üzerinden sunar, görüntü anlama ise hâlâ `/chat/completions` uç noktası üzerinden gerçekleştirilir,...","url":"https://www.aioga.com/tr/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:49:20.697Z"},"vi":{"title":"OpenRouter thêm điểm cuối API chuyên dụng cho mô hình tạo hình ảnh","summary":"OpenRouter thông qua điểm cuối chuyên dụng `/api/v1/images` cung cấp dịch vụ mô hình tạo hình ảnh, việc hiểu hình ảnh vẫn được thực hiện qua điểm cuối `/chat/completions`, cả hai sử dụng chung một API Key và hệ thống thanh toán. Nền tảng này đồng thời công bố hợp đồng giao diện đầy đủ cho cả hai nhiệm vụ và đã sửa lỗi \"no endpoints found\" xuất hiện trước đó.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter thêm điểm cuối API chuyên dụng cho mô hình tạo hình ảnh - Tin tức AI Aioga","description":"OpenRouter thông qua điểm cuối chuyên dụng `/api/v1/images` cung cấp dịch vụ mô hình tạo hình ảnh, việc hiểu hình ảnh vẫn được thực hiện qua điểm cuối `/chat/completions`, cả hai s...","url":"https://www.aioga.com/vi/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:49:22.659Z"},"id":{"title":"OpenRouter menambahkan endpoint API khusus untuk model pembuatan gambar","summary":"OpenRouter menyediakan layanan model generasi gambar melalui endpoint khusus `/api/v1/images`, pemahaman gambar masih dilakukan melalui endpoint `/chat/completions`, keduanya menggunakan API Key dan sistem penagihan yang sama. Platform ini juga merilis kontrak antarmuka lengkap untuk kedua jenis tugas dan memperbaiki kesalahan \"no endpoints found\" yang sebelumnya terjadi.","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter menambahkan endpoint API khusus untuk model pembuatan gambar - Berita AI Aioga","description":"OpenRouter menyediakan layanan model generasi gambar melalui endpoint khusus `/api/v1/images`, pemahaman gambar masih dilakukan melalui endpoint `/chat/completions`, keduanya mengg...","url":"https://www.aioga.com/id/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:50:03.191Z"},"th":{"title":"OpenRouter เพิ่มจุดเชื่อมต่อ API สำหรับโมเดลสร้างภาพ","summary":"OpenRouter ให้บริการโมเดลการสร้างภาพผ่านจุดปลายทางเฉพาะ `/api/v1/images` การเข้าใจภาพยังคงทำผ่านจุดปลายทาง `/chat/completions` ทั้งสองใช้ API Key และระบบการคิดค่าบริการเดียวกัน แพลตฟอร์มนี้ยังเผยแพร่สัญญาอินเทอร์เฟซฉบับสมบูรณ์ของทั้งสองงาน พร้อมแก้ไขข้อผิดพลาด \"no endpoints found\" ที่เคยเกิดขึ้นก่อนหน้านี้","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter เพิ่มจุดเชื่อมต่อ API สำหรับโมเดลสร้างภาพ - ข่าว AI Aioga","description":"OpenRouter ให้บริการโมเดลการสร้างภาพผ่านจุดปลายทางเฉพาะ `/api/v1/images` การเข้าใจภาพยังคงทำผ่านจุดปลายทาง `/chat/completions` ทั้งสองใช้ API Key และระบบการคิดค่าบริการเดียวกัน แพล...","url":"https://www.aioga.com/th/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:50:09.527Z"},"pl":{"title":"OpenRouter dodał dedykowany punkt końcowy API dla modeli generowania obrazów","summary":"OpenRouter udostępnia usługę modelu generowania obrazów poprzez dedykowany punkt końcowy `/api/v1/images`, podczas gdy rozumienie obrazów nadal odbywa się za pomocą punktu końcowego `/chat/completions`, oba korzystają z tego samego klucza API i systemu rozliczeń. Platforma jednocześnie opublikowała pełną umowę interfejsu dla obu zadań i naprawiła wcześniej występujący błąd \"no endpoints found\".","category":"技巧观点","source":"OpenRouter：Announcements（RSS）","aggregationSource":"OpenRouter：Announcements（RSS）","pageTitle":"OpenRouter dodał dedykowany punkt końcowy API dla modeli generowania obrazów - Aioga Wiadomości AI","description":"OpenRouter udostępnia usługę modelu generowania obrazów poprzez dedykowany punkt końcowy `/api/v1/images`, podczas gdy rozumienie obrazów nadal odbywa się za pomocą punktu końcoweg...","url":"https://www.aioga.com/pl/news/cms3fuyms00mtrondudz5pjw8/","contentTranslated":true,"sourceHash":"700d7c73b2cf9eb4","translatedAt":"2026-07-27T17:50:58.284Z"}}}}