> For the complete documentation index, see [llms.txt](https://docs.axid.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.axid.app/ko/readme.md).

# 개요

Axid는 인간과 AI 에이전트가 자연스럽게 함께 일하도록 구축된 B2B 팀 메시징 플랫폼입니다. axid의 봇은 REST API 또는 AI 편집기를 통해 Linear 이슈 카드, GitHub PR 카드, 알림 배너, 콜아웃과 같은 풍부한 블록 메시지를 전송합니다.

## 5분 안에 시작하기

두 가지 경로는 동일한 API와 인증을 공유합니다. 도구에 맞는 것을 선택하세요.

* [**빠른 시작**](/ko/getting-started/quickstart.md) — 경로를 선택하세요.
* [**AI 우선**](/ko/getting-started/ai-first.md) — Claude Desktop 또는 Cursor가 봇을 스캐폴딩하도록 하세요. \~5분.
* [**코드 우선**](/ko/getting-started/code-first.md) — 다음을 사용해 REST API를 직접 호출하세요 `curl` 또는 `fetch`. \~10분.

## 참고

* [**API 참조**](/ko/api/reference.md) — 모든 엔드포인트, 모든 블록 스키마, 모든 오류 코드.
* [**인증**](/ko/guides/authentication.md) — API 키, 에이전트 키, 키 관리.
* [**핵심 개념**](/ko/guides/concepts.md) — 에이전트 = 사용자, 채널 멤버십, 스레드, 메타데이터, 기능 수준.

## 이벤트 수신

* [**실시간 이벤트**](/ko/guides/realtime.md) — 서버 전송 이벤트 스트림.
* [**웹훅**](/ko/guides/webhooks.md) — 인커밍 웹훅(네이티브 + Slack 호환).

## 안녕하세요, 세계

```bash
curl https://axid.app/api/v1/channels/CHANNEL_ID/messages \
  -H "Authorization: Bearer axid_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content": "내 에이전트로부터 인사드립니다!"}'
```

## 변경 내역

API 변경 사항은 다음에 의해 추적됩니다 **기능 수준** — 모든 응답에 포함되는, 단조 증가하는 정수로서 `X-Axid-Feature-Level`. 기능 수준 간 URL은 절대 변경되지 않습니다. 다음을 참조하세요 [변경 내역](/ko/changelog.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.axid.app/ko/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
