1. 图像
Foxapi文档
  • 产品介绍
  • 基本使用
    • 在API客户端中使用
    • 获取API令牌(API密钥)
    • 常用大模型
    • 怎么选择分组
  • API
    • 发出请求
    • 完成对象
    • 常见问题
    • OpenAI
      • 聊天(Chat)
        • 创建聊天补全(带图片)
        • 创建聊天补全
      • 音频(Audio)
        • 创建语音
        • 创建转录
        • 创建翻译
      • 图像(Images)
        • 创建图像
        • 创建图片编辑
      • 嵌入(Embeddings)
        • 创建嵌入
      • 模型(Models)
        • 列出模型
        • 检索模型
        • 删除微调模型
    • Anthropic
      • 模型
        • 列出模型
        • 获取模型
      • 消息
        • 消息
        • 强制返回思考
        • 图片理解
        • 函数调用
        • 多轮函数调用
        • Web search / 联网搜索
    • Gemini
      • 图片生成
        • 使用 Gemini 生成图片
        • 使用 Gemini 编辑图片
        • 使用 Imagen 3 生成图片
        • 使用 Gemini 生成图片 Copy
      • 文本生成
        • 文字输入
        • 多轮对话
        • 流式输出
        • 多轮对话(流式)
    • Midjourney
      • 查询
        • 查询接口
        • 批量查询接口
        • 获取种子(Seed)接口
      • 图像
        • 文生图(Imagine)接口
          POST
        • 图片融合(Blend)接口
          POST
      • 视频
        • 生成视频(Video)接口
      • 其他操作
        • 按钮点击(Action)接口
        • 图生文(Describe)接口
        • 上传(upload)接口
    • 图片生成
      • Nano-banana
        • 接口请求和格式
        • Gemini格式
        • 统一图片生成格式
    • 视频生成
    • Rerank API
      • Cohere 重排序格式
      • Xinference 重排序格式
      • Jina AI 重排序格式
  • 在客户端中使用
    • cline中使用
    • chatbox中使用大语言模型
  • aicode
    • AICode说明
    • Claude Code 安装配置
  • 数据模型
    • Schemas
      • OmniVideoCreateRequest
      • VideoImageItem
      • ElementReference
      • VideoReference
      • OmniVideoCreateResponse
      • OmniVideoQueryResponse
      • OmniVideoListResponse
      • VideoTaskItem
      • TasksQueryRequest
      • VideoResult
      • TaskSubmitResponse
      • OmniImageCreateRequest
      • VideoTaskQueryResponse
      • ImageItem
      • TaskDetail
      • OmniImageCreateResponse
      • BatchTasksQueryResponse
      • OmniImageQueryResponse
      • OmniImageListResponse
      • ImageTaskItem
      • ImageResult
      • CreateElementRequest
      • ElementResponse
      • ElementListResponse
      • Element
      • TaskStatus
    • 记录不存在
    • VideoGenRequest
    • 参数不正确
    • UpstreamSubmitResponse
    • UpstreamQueryResponse
    • SoraVideoGenRequest
    • ErrorResponse
  1. 图像

图片融合(Blend)接口

POST
https://api.foxapi.cc/mj/submit/blend
执行Blend操作,提交融图任务。

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数

Body 参数application/json

示例
{
    "mode": "RELAX",
    "base64Array": [
        "data:image/png;base64,xxx1",
        "data:image/png;base64,xxx2"
    ],
    "dimensions": "SQUARE"
}

返回响应

🟢200OK
application/json
Body

示例
{
    "code": 1,
    "description": "Submit Success",
    "result": "1762312760178054"
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
修改于 2025-11-05 04:07:29
上一页
文生图(Imagine)接口
下一页
生成视频(Video)接口
Built with