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

# Quickstart

> This page is for users of the API reference section, with the goal of sending your first verifiable request as quickly as possible.

## Essential Information

* Base URL：`https://api.aiid.edu.kg`
* Auth header: `Authorization: Bearer YOUR_API_KEY`
* Recommended starting point: `POST /v1/chat/completions`

## Minimal Request Example

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

## Checklist Before Calling Other Endpoints

* Did you replace the correct Base URL
* Whether you have included Bearer Token
* Whether you are using the request format required on the API page
* Whether you have saved the `task_id` or `operation_name` required for video task queries
