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

# Bắt đầu nhanh

> Trang này dành cho người dùng khu vực tham chiếu API, với mục tiêu giúp bạn nhanh chóng gửi yêu cầu đầu tiên có thể xác minh.

## Thông tin bắt buộc

* Base URL：`https://api.aiid.edu.kg`
* Header xác thực: `Authorization: Bearer YOUR_API_KEY`
* Điểm bắt đầu khuyến nghị: `POST /v1/chat/completions`

## Ví dụ request tối thiểu

```bash theme={null}
curl https://api.aiid.edu.kg/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer YOUR_API_KEY"   -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "hello"}]
  }'
```

## Các hạng mục cần kiểm tra trước khi gọi API khác

* Đã thay thế đúng Base URL chưa
* Đã kèm theo Bearer Token chưa
* Đã sử dụng đúng định dạng request mà trang API yêu cầu chưa
* Đã lưu `task_id` hoặc `operation_name` cần thiết để truy vấn task video chưa
