Skip to content

맥주 추천 API

Ting-Kim edited this page Jul 1, 2022 · 2 revisions

GET /api/v1/beers/recommend


Output

{
    "success": true,
    "contents": [
        {
            "id": 2(Long),
            "country": {
	            "id": 3(Long),
	            "nameKor": "string",
	            "nameEng": "string",
	            "imageUrl": "string",
	            "continent": {
		    "id": Long,
		    "name": "아시아"
	            }
            },            
	    "type": {
	        "nameEng": "BROWN_ALE",
	        "nameKor": "브라운 에일",
	        "description": "string",
	        "imageUrl": "string"
            },             
            "nameKor": "string",            
            "nameEng": "string",            
            "imageUrl": "string",           
            "content": "string",            
            "alcohol": 4.7(float),            
            "price": int,            
            "volume": int,           
            "deletedAt": LocalDateTime,            
            "createdAt": "2022-05-22T18:01:05",            
            "updatedAt": "2022-05-22T18:01:05",            
            "feel": int,            
            "isLiked": boolean        
        }    
    ],    
    "error": null
}
Clone this wiki locally