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

# 빠른 시작

> API 서비스를 빠르게 시작하세요

# 빠른 시작

API 서비스에 오신 것을 환영합니다! 이 가이드는 이미지 및 비디오 생성을 빠르게 시작하는 데 도움을 드립니다.

## 1단계: API 키 받기

1. [API 키 관리 페이지](https://api.elkapi.com/keys) 방문
2. 계정에 로그인
3. 새 API 키 생성
4. 키를 안전하게 보관 (한 번만 표시됩니다)

## 2단계: 모델 선택

다양한 AI 모델 중에서 선택할 수 있습니다.

### 텍스트 생성 모델

* **GPT-5**: 강력한 대화 및 텍스트 생성 기능
* **Claude**: Anthropic의 고성능 대화 모델
* **Gemini**: Google의 멀티모달 대규모 언어 모델

### 이미지 생성 모델

* **GPT-Image**: 고품질 이미지 생성

### 비디오 생성 모델

* **VEO 3.1**: 전문 비디오 생성

## 3단계: 요청 보내기

### 텍스트 생성 예제

```bash theme={null} theme={null}
curl -X POST https://api.elkapi.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "messages": [
      {
        "role": "user",
        "content": "안녕하세요, 자기소개를 해주세요"
      }
    ]
  }'
```

### 이미지 생성 예제

```bash theme={null} theme={null}
curl -X POST https://api.elkapi.com/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-image-1.5",
    "prompt": "A cute panda",
    "size": "1:1",
    "n": 1
  }'
```

### 비디오 생성 예제

```bash theme={null} theme={null}
curl -X POST https://api.elkapi.com/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "veo-3.1-generate-preview",
    "prompt": "Waves crashing against the shore",
    "duration": 4,
    "size": "1280x720"
  }'
```

## 4단계: 작업 상태 확인

비동기 처리를 사용하므로 결과를 얻으려면 작업 상태를 조회해야 합니다.

```bash theme={null} theme={null}
curl -X GET https://api.elkapi.com/v1/video/generations/YOUR_TASK_ID \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## 다음 단계

<Card title="API 문서 보기" icon="book" href="/ko/api-reference/texts/general/chat-completions">
  사용 가능한 모든 API 엔드포인트에 대해 자세히 알아보세요.
</Card>

<Card title="개발 가이드" icon="code" href="/ko/development">
  API를 애플리케이션에 통합하는 방법을 배워보세요.
</Card>
