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

# API 개요

> 프로그래밍 방식 액세스를 위한 REST API 및 WebSocket 엔드포인트.

# API 개요

Myrm은 프로그래밍 방식 액세스를 위해 REST API 및 WebSocket 엔드포인트를 노출합니다.

## 기본 URL

* **SaaS**: `https://app.myrmagent.ai/api`
* **자체 호스팅**: `http://localhost:3000/api`

## 인증

모든 API 요청에는 Bearer 토큰이 필요합니다.

```bash theme={null}
curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://app.myrmagent.ai/api/agents
```

토큰 관리는 [인증](/docs/api-reference/authentication)을 참조하세요.

## 응답 형식

모든 응답은 일관된 구조의 JSON을 사용합니다.

```json theme={null}
{
  "data": { ... },
  "meta": { "timestamp": "2026-05-30T00:00:00Z" }
}
```

## 속도 제한

| Plan      | Requests/min |
| --------- | ------------ |
| Free      | 30           |
| Companion | 120          |
| Pro       | 300          |
| Max       | 600          |
