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

# 빠른 시작

> Magic Meal Kits 배포에 첫 요청을 보내 보세요.

## 1. 베이스 URL 찾기

배포는 [설치](/ko/installation) 과정에서 생성된 Cloud Run URL에서 실행됩니다.

```
https://magic-meal-kits-xxxxx.run.app
```

HTTP API는 `/api/v1` 아래에 있습니다(일부 기능은 `/api/v2`, `/api/v3`).

## 2. 요청 보내기

헬스 체크는 인증이 필요 없습니다.

```bash theme={null}
curl "https://magic-meal-kits-xxxxx.run.app/health"
```

인증된 호출은 [API 키](/ko/authentication)를 사용합니다.

```bash theme={null}
curl -X POST "https://magic-meal-kits-xxxxx.run.app/api/v1/youtube/metadata" \
  -H "X-API-KEY: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"video_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"}'
```

## 3. 자동화 만들기

<CardGroup cols={2}>
  <Card title="API 둘러보기" icon="book" href="/api-reference/overview">
    자동화하려는 작업에 맞는 엔드포인트를 찾으세요.
  </Card>

  <Card title="LLM에게 작성 맡기기" icon="robot" href="/ko/mcp/docs-as-mcp">
    Claude나 Cursor를 MCP로 이 문서에 연결하고 자동화를 설명하세요.
  </Card>
</CardGroup>

<Info>
  **작성 중인 페이지입니다.** API 레퍼런스와 함께 엔드투엔드 예제가 추가될 예정입니다.
</Info>
