> ## 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.

# 快速上手

> 本頁面面向 API 參考區使用者，目標是盡快發出第一條可驗證請求。

## 必備資訊

* Base URL：`https://api.aiid.edu.kg`
* 鑑權標頭：`Authorization: Bearer YOUR_API_KEY`
* 推薦起點：`POST /v1/chat/completions`

## 最小請求範例

```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"}]
  }'
```

## 進入其他介面前的檢查項

* 是否替換了正確的 Base URL
* 是否帶上了 Bearer Token
* 是否使用了介面頁面要求的請求格式
* 是否儲存了影片任務查詢所需的 `task_id` 或 `operation_name`
