# API設計書

## 1. API概要
- API名:
- 目的:
- 認証方式:
- ベースURL:

## 2. エンドポイント
| Method | Path | 説明 |
| --- | --- | --- |
| GET |  |  |

## 3. リクエスト
### Headers
| Name | Required | Description |
| --- | --- | --- |
| Authorization | Yes |  |

### Query / Path Parameters
| Name | Type | Required | Description |
| --- | --- | --- | --- |
|  |  |  |  |

### Body
```json
{
  "sample": "value"
}
```

## 4. レスポンス
### 200 OK
```json
{
  "id": "sample"
}
```

## 5. エラー
| Status | Code | Description |
| --- | --- | --- |
| 400 | bad_request |  |
| 401 | unauthorized |  |
| 500 | internal_error |  |

## 6. 備考
-

