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

## 他のAPIを呼び出す前のチェック項目

* 正しい Base URL に置き換えられていますか
* Bearer Token が含まれているか
* APIページで要求されているリクエスト形式を使用しているか
* 動画タスクのクエリに必要な `task_id` または `operation_name` を保存しているか
