VMAN API Docs
  1. SD3
VMAN API Docs
  • 模型接口
    • 聊天接口(Chat)
      • 聊天接口
      • gpts
      • gemini-pro
      • gpt-4-all(分析图片)
      • gpt-4-vision-preview
    • 自动补全接口(Completions)
      • 内容补全接口
    • 图像接口(Images)
      • DALL·E 3
      • Stable-Diffusion
      • gpt-4-all(生成图片)
    • 向量生成接口(Embeddings)
      • 创建嵌入
    • 音频接口(Audio)
      • 创建转录
      • 创建翻译
      • TTS文本转语音
    • Midjourney
      • 补充 - 其他参数以及回调
      • InsightFace任务提交
        • 提交swap_face任务
      • 任务提交
        • 执行动作
        • 提交Blend任务
        • 提交Describe任务
        • 提交Imagine任务
        • 提交Modal
        • 提交Shorten任务
      • 任务查询
        • 查询所有任务
        • 根据ID列表查询任务
        • 分页查询任务
        • 查询任务队列
        • 取消任务
        • 指定ID获取任务
        • 获取任务图片的seed(需设置mj或niji的私信ID)
    • Suno音乐(逆向)
      • v3.0
        • 生成音乐
        • 获取音乐
        • 合并音乐
      • v3.5
        • 生成音乐
        • 获取音乐
    • Flux图像(官方格式)
      • flux-pro-1.1
      • flux-pro
      • flux-dev
      • flux-查询
    • Recraft图像(官方格式)
      • styles
        • 创建样式
      • images
        • 生成图像
        • 图像矢量化
        • 移除背景
        • 清晰度提升
        • 生成式放大
    • Stability AI图像(官方格式)
      • SD3
        • Stable Image Ultra
          POST
        • Stable Image Core
          POST
        • Stable Diffusion 3
          POST
      • SDXL
        • Text-to-image
    • Ideogram图像(官方格式)
      • Generate(文生图)
      • Remix(混合图)
      • Upscale(放大高清)
      • Describe(描述)
    • Ideogram图像(逆向)
      • 图片描述
      • 文生图
      • 合成图
      • 放大图片
      • ideogram任务查询
    • Kling视频(官方格式)
      • 图像生成
      • 文生视频
      • 图生视频
      • 查询任务
    • Luma视频(逆向)
      • 付费版
        • 生成视频
        • 获取视频
    • Runway视频(官方格式)
      • 图生视频
      • 任务查询
    • CogVideoX视频(官方格式)
      • CogVideoX视频生成
      • CogVideoX视频查询
    • Viggle舞蹈(逆向)
      • Mix上传视频并生成视频
      • Mix官方模板列表
      • Mix上传视频素材库
      • Mix上传图片素材库
      • Multi上传视频并生成视频
      • Multi模板列表
      • Move上传视频并生成视频
      • 查询视频任务
      • 剩余积分查询
    • Midjourney视频
      • 视频提交
      • 查询任务
      • Fast视频提交
      • Relax视频提交
    • Veo视频
      • 提交视频生成任务
      • 查询视频生成状态
  • 帮助中心
    • 常见问题及解决办法
  1. SD3

Stable Diffusion 3

POST
https://api.mjdjourney.cnhttps://api.mjdjourney.cn/sd/v2beta/stable-image/generate/sd3
Generate an image using a Stable Diffusion 3 model:
SD3 Medium - the 2 billion parameter model
SD3 Large - the 8 billion parameter model
SD3 Large Turbo - the 8 billion parameter model with a faster inference time
This API is powered by Fireworks AI.
API status can be reviewed here.

Try it out#

Grab your API key and head over to one of the following sites:
Open Fireworks Playground
Open Google Colab

How to use#

Please invoke this endpoint with a POST request.
The headers of the request must include an API key in the authorization field. The body of the request must be
multipart/form-data. The accept header should be set to one of the following:
image/* to receive the image in the format specified by the output_format parameter.
application/json to receive the image encoded as base64 in a JSON response.

Generating with a prompt#

Commonly referred to as text-to-image, this mode generates an image from text alone. While the only required
parameter is the prompt, it also supports an aspect_ratio parameter which can be used to control the
aspect ratio of the generated image.

Generating with a prompt and an image#

Commonly referred to as image-to-image, this mode also generates an image from text but uses an existing image as the
starting point. The required parameters are:
prompt - text to generate the image from
image - the image to use as the starting point for the generation
strength - controls how much influence the image parameter has on the output image
mode - must be set to image-to-image
Note: maximum request size is 10MiB.

Optional Parameters:#

Both modes support the following optional parameters:
model - the model to use (SD3 Medium, SD3 Large, or SD3 Large Turbo)
output_format - the the format of the output image
seed - the randomness seed to use for the generation
negative_prompt - keywords of what you do not wish to see in the output image
Note: for more details about these parameters please see the request schema below.

Output#

The resolution of the generated image will be 1MP. The default resolution is 1024x1024.

Credits#

SD3 Medium: Flat rate of 3.5 credits per successful generation.
SD3 Large: Flat rate of 6.5 credits per successful generation.
SD3 Large Turbo: Flat rate of 4 credits per successful generation.
As always, you will not be charged for failed generations.

请求参数

Header 参数

Body 参数multipart/form-data

示例代码

Python
JavaScript
Shell
Java
Swift
Go
PHP
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Python
JavaScript
Shell
Java
curl --location --request POST 'https://api.mjdjourney.cn/sd/v2beta/stable-image/generate/sd3' \
--header 'authorization;' \
--header 'accept;' \
--form 'prompt=""' \
--form 'mode="text-to-image"' \
--form 'image=@""' \
--form 'strength=""' \
--form 'aspect_ratio="1:1"' \
--form 'model="sd3-large"' \
--form 'seed=""' \
--form 'output_format="png"' \
--form 'negative_prompt=""'

返回响应

🟢200Generation was successful.
application/json
Body

示例
{}
🟠400Invalid parameter(s), see the `errors` field for details.
🟠403Your request was flagged by our content moderation system.
🟠413Your request was larger than 10MiB.
🟠422You made a request with an unsupported language.
🟠429You have made more than 150 requests in 10 seconds.
🔴500An internal error occurred. If the problem persists [contact support](https://stabilityplatform.freshdesk.com/support/tickets/new).
修改于 2024-09-09 11:48:27
上一页
Stable Image Core
下一页
Text-to-image
Built with