You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET http://localhost:8080/api/tools/metronome/presets
### 튜너 프리셋 조회 (비회원 접근 가능)
GET http://localhost:8080/api/tools/tuner/presets
### 연습 세션 생성 (인증 필요)
POST http://localhost:8080/api/sessions
Content-Type: application/json
Authorization: Bearer {{token}}
{
"sessionName": "첫 번째 연습",
"sessionType": "FREESTYLE",
"targetBpm": 120
}
### 연습 세션 목록 조회 (인증 필요)
GET http://localhost:8080/api/sessions
Authorization: Bearer {{token}}
### 연습 세션 시작 (인증 필요)
POST http://localhost:8080/api/sessions/1/start
Authorization: Bearer {{token}}
### 연습 세션 완료 (인증 필요)
POST http://localhost:8080/api/sessions/1/complete?actualBpm=118&accuracyScore=85.5&timingScore=82.3&pitchScore=88.1&overallScore=85.3&durationSeconds=300