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

# OpenAI Chat Completions API

> Используйте OpenAI-compatible Chat Completions API BetterToken: полный URL запроса, Bearer API Key и примеры для curl, Python и JavaScript.

Вызывайте OpenAI-compatible Chat Completions через `POST https://www.bettertoken.ai/v1/chat/completions`. Большинству внешних инструментов нужен только Base URL `https://www.bettertoken.ai/v1`: путь `/chat/completions` они добавляют самостоятельно.

## Ключевые параметры

| Поле               | Значение                                         |
| ------------------ | ------------------------------------------------ |
| API Key            | API Key BetterToken                              |
| Полный URL запроса | `https://www.bettertoken.ai/v1/chat/completions` |
| Model              | `YOUR_MODEL_ID`                                  |

## Подготовка

* <a href={"https://bettertoken.ai/register"}>Создайте API Key BetterToken</a>
* Скопируйте Model ID из <a href={"https://bettertoken.ai/pricing"}>model plaza</a> или окна **Setup** для ключа
* Подготовьте терминал с `curl`, либо Python 3 / Node.js

## Установка

<Tabs>
  <Tab title="curl">
    Для `curl` не нужен SDK. Проверьте команду `curl --version`.
  </Tab>

  <Tab title="Python">
    ```bash theme={null}
    python -m pip install openai
    ```
  </Tab>

  <Tab title="JavaScript">
    ```bash theme={null}
    npm install openai
    ```
  </Tab>
</Tabs>

## Ручная настройка

### curl

```bash theme={null}
curl "https://www.bettertoken.ai/v1/chat/completions" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  --data '{
    "model": "YOUR_MODEL_ID",
    "messages": [
      {
        "role": "user",
        "content": "Привет"
      }
    ]
  }'
```

### Python SDK

```python theme={null}
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://www.bettertoken.ai/v1",
)

response = client.chat.completions.create(
    model="YOUR_MODEL_ID",
    messages=[
        {"role": "user", "content": "Привет"},
    ],
)

print(response.choices[0].message.content)
```

### JavaScript SDK

```javascript theme={null}
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "YOUR_API_KEY",
  baseURL: "https://www.bettertoken.ai/v1",
});

const response = await client.chat.completions.create({
  model: "YOUR_MODEL_ID",
  messages: [{ role: "user", content: "Привет" }],
});

console.log(response.choices[0].message.content);
```

## Проверка подключения

В Playground справа:

1. Укажите `YOUR_API_KEY` в разделе **Authorization**.
2. Замените `model` на `YOUR_MODEL_ID`.
3. Измените `messages` и отправьте запрос.

Playground уже использует полный URL `https://www.bettertoken.ai/v1/chat/completions`.

Ответ `200` с текстом модели в `choices[0].message.content` подтверждает подключение.

## Смена модели

Замените `YOUR_MODEL_ID` на полный Model ID из model plaza или окна **Setup**. Не сокращайте Model ID по отображаемому названию.

## Частые ошибки

| Ошибка            | Решение                                                                                                                                      |
| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `401`             | Проверьте `Authorization: Bearer YOUR_API_KEY` и снова скопируйте API Key BetterToken.                                                       |
| `404`             | Для прямого HTTP-запроса используйте `https://www.bettertoken.ai/v1/chat/completions`; для `base_url` SDK — `https://www.bettertoken.ai/v1`. |
| Модель не найдена | Используйте полный Model ID из model plaza или окна **Setup**.                                                                               |
| Неверный запрос   | Проверьте, что `messages` — массив, а каждый элемент содержит `role` и `content`.                                                            |

## Расширенная настройка

### Поддерживаемые провайдеры

| Провайдер | Статус            |
| --------- | ----------------- |
| Claude    | Не поддерживается |
| GPT       | Ручная настройка  |
| Kimi      | Ручная настройка  |
| GLM       | Ручная настройка  |

<Note>Статусы относятся к способу подключения BetterToken, описанному на этой странице.</Note>

<Accordion title="Что означают способы настройки">
  * **Ручная настройка**: укажите API Key, Base URL и Model.
  * **Не поддерживается**: проверенный способ прямого подключения пока отсутствует.
</Accordion>

## Технические детали

<Accordion title="Base URL и полный URL запроса">
  Инструментам, которым нужен полный URL запроса, например GitHub Copilot и TRAE, укажите `https://www.bettertoken.ai/v1/chat/completions`. В Cursor, Cline, OpenCode, n8n и Dify, которые сами добавляют путь, укажите только `https://www.bettertoken.ai/v1`.
</Accordion>


## OpenAPI

````yaml api-reference/openapi.json POST /v1/chat/completions
openapi: 3.1.0
info:
  title: BetterToken GPT Image 2 API
  description: >-
    OpenAI-compatible image generation and image editing endpoints for
    BetterToken.
  version: 1.0.0
servers:
  - url: https://www.bettertoken.ai
security:
  - bearerAuth: []
paths:
  /v1/chat/completions:
    post:
      tags:
        - OpenAI Chat Completions
      summary: 创建 Chat Completions 响应
      description: >-
        通过 BetterToken 的 OpenAI-compatible Chat Completions API 向 GPT
        提供商模型发送对话消息。适用于需要 /v1/chat/completions 的外部工具和应用。
      operationId: createChatCompletion
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChatCompletionsRequest'
            example:
              model: YOUR_MODEL_ID
              messages:
                - role: user
                  content: Hello
      responses:
        '200':
          $ref: '#/components/responses/ChatCompletionResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          $ref: '#/components/responses/PaymentRequired'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/ServerError'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: |-
            curl 'https://www.bettertoken.ai/v1/chat/completions' \
              -H 'Authorization: Bearer YOUR_API_KEY' \
              -H 'Content-Type: application/json' \
              --data '{
                "model": "YOUR_MODEL_ID",
                "messages": [{"role": "user", "content": "Hello"}]
              }'
components:
  schemas:
    ChatCompletionsRequest:
      type: object
      required:
        - model
        - messages
      properties:
        model:
          type: string
          description: GPT 提供商中可用的模型 ID。请以模型广场当前显示的模型为准。
          example: YOUR_MODEL_ID
        messages:
          type: array
          minItems: 1
          description: 对话消息数组。每项应包含 role 和 content。
          items:
            type: object
            required:
              - role
              - content
            properties:
              role:
                type: string
                example: user
              content:
                type: string
                example: Hello
            additionalProperties: true
        stream:
          type: boolean
          description: 是否请求流式响应。
          default: false
      additionalProperties: true
    ChatCompletionResponse:
      type: object
      description: OpenAI-compatible Chat Completions API 响应。实际字段会随所选模型和请求参数变化。
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              example: invalid request
            type:
              type: string
              example: invalid_request_error
            code:
              type: string
              example: invalid_request
          additionalProperties: true
        message:
          type: string
          example: insufficient quota
      additionalProperties: true
  responses:
    ChatCompletionResponse:
      description: GPT 提供商模型返回的 Chat Completions API 响应。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ChatCompletionResponse'
    BadRequest:
      description: 请求格式错误、缺少参数、JSON 或 multipart 解析失败、尺寸格式错误。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: API Key 缺失或无效。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    PaymentRequired:
      description: 额度或余额不足。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: 触发限速、并发限制或上游繁忙。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    ServerError:
      description: 网关或上游服务异常。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: BetterToken API Key
      description: >-
        Use your BetterToken API Key as a bearer token. Do not expose API keys
        in frontend browser code, screenshots, logs, tickets, or Git
        repositories.

````