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

# 빠른 시작

> API 키 발급부터 첫 Platform API 호출까지 3단계

첫 API 호출로 인증이 동작하는지 확인합니다. 1분이면 충분합니다.

<Steps>
  <Step title="API 키 발급">
    [Chainshift 대시보드](https://app.trychainshift.ai)에서 조직 API 키를 발급합니다. 발급 환경에 따라 키에 `cs_live_`(운영) 또는 `cs_test_`(개발) 접두사가 붙습니다.
  </Step>

  <Step title="첫 요청 보내기">
    답변을 수집할 수 있는 AI 모델 목록을 조회합니다.

    ```bash theme={null}
    curl -H "API-Key: YOUR_API_KEY" \
      "https://dev-platform-api.trychainshift.ai/api/v1beta/platform/models"
    ```
  </Step>

  <Step title="응답 확인">
    아래처럼 지원 모델 목록이 반환되면 연결에 성공한 것입니다. 이 `model` 값들이 실행 요청 때 그대로 쓰입니다.

    ```json theme={null}
    {
      "models": [
        { "model": "CHATGPT", "name": "ChatGPT" },
        { "model": "GOOGLE_OVERVIEW", "name": "Google Overview" },
        { "model": "GOOGLE_AI", "name": "Google AI Mode" },
        { "model": "PERPLEXITY", "name": "Perplexity" },
        { "model": "GEMINI", "name": "Gemini" },
        { "model": "CLAUDE", "name": "Claude" },
        { "model": "NAVER_AI_BRIEFING", "name": "Naver AI Briefing" },
        { "model": "NAVER_AI_TAB", "name": "Naver AI Tab" }
      ]
    }
    ```
  </Step>
</Steps>

`401` 응답이 반환되면 `API-Key` 헤더의 키 값을 확인하세요. 키 관리 방법은 [API 키](/authentication/api-key)를 참고하세요.

## 다음 단계

<CardGroup cols={3}>
  <Card title="핵심 개념" icon="diagram-project" href="/concepts">
    리소스 구조를 먼저 이해하기
  </Card>

  <Card title="프롬프트 실행하기" icon="play" href="/guides/submitting-runs">
    AI 모델에서 첫 답변 수집하기
  </Card>

  <Card title="API 개요" icon="code" href="/api-reference/overview">
    베이스 URL과 공통 규칙, 전체 스키마
  </Card>
</CardGroup>

<Note>
  코드 없이 AI 도구(Claude Code, Cursor 등)에서 자연어로 사용하려면 [MCP 연결](/mcp/overview)을 참고하세요.
</Note>
