-
Notifications
You must be signed in to change notification settings - Fork 0
바이닐 상세
Haely edited this page Jul 7, 2022
·
6 revisions

[GET] ~/vinyls/search/:id
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json | |
token | {token} | 토큰 |
변수 | 타입 | 설명 |
---|---|---|
id | int | 상세 정보 조회할 바이닐의 고유 id |
변수 | 타입 | 설명 |
---|---|---|
id | int | 바이닐 고유 id |
title | String | 바이닐 타이틀 |
artist | String | 아티스트 |
image | String | 커버 이미지(q:90) |
thumb | String | 썸네일 이미지(q:40) |
year | int | 발매된 해 |
rate | float | 별점 |
rateCount | int | 평가 수 |
genres | List | 장르(String) 리스트 |
tracklist | List | 트랙리스트 - 제목(String) |
{
"status": 200,
"success": true,
"message": "바이닐 상세 조회 성공",
"data": {
"id": 17111,
"title": "EP",
"artist": "Urban Electro",
"image": "https://img.discogs.com/hdCD8wSqNJUy2geSLPFKWdLOoC0=/fit-in/600x600/filters:strip_icc():format(jpeg):mode_rgb():quality(90)/discogs-images/R-17111-1474833110-4920.jpeg.jpg",
"thumb": "https://i.discogs.com/7VRGOZS9vKRFRa0e9b6GUN3iMEQr6jJN7NhRVF9hIgM/rs:fit/g:sm/q:40/h:150/w:150/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTI5MDgz/LTE1MDg4OTM2ODAt/MTAyMi5qcGVn.jpeg",
"year": 1996,
"genres": [
"Electronic"
],
"tracklist": [
"Wildpitch",
"Battery",
"Urban Electro",
"Insomniac"
],
"rate": 0,
"rateCount": 0
}
}
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다"
}
{
"status": 400,
"success": false,
"message": "바이닐 상세 조회 실패"
}
-
User
-
Vinyl
-
Request