> ## Documentation Index
> Fetch the complete documentation index at: https://yunbot-c8d18790.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Yundoc 文档简介

> YUNBOT AI 图像生成接口使用指南

<Note>
  本文档详细介绍了 YUNBOT 的 API 调用方法，帮助开发者快速接入我们的 AI 图像生成服务。
</Note>

## 概述

YUNBOT 提供了功能强大且易于使用的 RESTful API，让您能够在自己的应用中轻松集成 AI 图像生成功能。通过这些接口，您可以实现文本生成图像、图像编辑、风格迁移等多种功能。

<Card title="API 接口清单" icon="code" href="/api-reference/endpoints">
  查看完整的 API 接口列表和调用示例
</Card>

## 认证方式

所有的 API 请求都需要进行身份验证。我们使用 API Key 进行认证，请在请求头中包含您的 API Key。

```json theme={null}
{
  "headers": {
    "Authorization": "Bearer your_api_key_here",
    "Content-Type": "application/json"
  }
}
```

## 主要功能

我们的 API 支持以下核心功能：

* 文本生成图像（Text-to-Image）
* 图像编辑与修改（Image Editing）
* 风格迁移（Style Transfer）
* 图像放大与优化（Upscaling）
* 批量生成（Batch Generation）

每个功能都有相应的 API 端点，您可以根据需求选择合适的接口进行调用。详细的接口说明和示例代码，请参考各个具体接口的文档页面。
