> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ai.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> AICC API Full Interface Documentation

## Overview

This API reference describes the RESTful, streaming, and realtime APIs you can use to interact with the AICC platform. REST APIs are usable via HTTP in any environment that supports HTTP requests.

## Authentication

The AICC API uses API keys for authentication. Create, manage, and learn more about API keys in [your account page](https://api.ai.cc/console/token).

**Remember that your API key is a secret!** Do not share it with others or expose it in any client-side code (browsers, apps). API keys should be securely loaded from an environment variable or key management service on the server.

API keys should be provided via [HTTP Bearer authentication](https://swagger.io/docs/specification/v3_0/authentication/bearer-authentication/).

```
Authorization: Bearer YOUR_AICCAPI_KEY
```

## AI Model APIs

AI Model APIs provide calls for various AI capabilities, compatible with the [OpenAI API](https://platform.openai.com/docs/api-reference) format.

<Columns cols={2}>
  <Card title="Models" icon="list" href="endpoint/model/models">
    Get a list of available models.
  </Card>

  <Card title="Chat" icon="comment-dots" href="endpoint/chat/openai">
    Conversation completion API.
  </Card>

  <Card title="Completions" icon="book" href="endpoint/completion">
    Traditional text completion API.
  </Card>

  <Card title="Images" icon="image" href="endpoint/image/doubao">
    AI image generation API.
  </Card>

  <Card title="Videos" icon="video" href="endpoint/video/create">
    AI video generation API.
  </Card>

  <Card title="Translate" icon="language" href="endpoint/translate">
    Traditional text completion API.
  </Card>
</Columns>
