Get Place (장소 단일 조회)

장소 Id 기반으로 이미지가 포함된 장소의 상세 정보를 조회합니다. latitude, longitude, radius 세 파라미터가 충족되었을 때 검색 영역을 원으로 지정할 수 있습니다.

엔드포인트

GET /api/v1/places/{placeId}

Path Parameters:

파라미터

타입

설명

placeId

string

장소 Id

Response:

{
  "code": 200,
  "message": "요청이 성공적으로 완료되었습니다.",
  "place": {
    "id": "placeId",
    "name": "러너스",
    "description": "라이프테크 스타트업",
    "status": "OPERATIONAL",
    "phone": "+82 70-7178-8777",
    "address": "대한민국 성남시 분당구",
    "todayTime": "월요일: 오전 11:00 ~ 오후 10:00",
    "openingHours": [
    "월요일: 오전 11:00 ~ 오후 10:00"
    ],
    "rating": 4.1,
    "ratingCount": 100,
    "imagesUrl": [
      "https://cf.dev.lab.sense.im/media/image/ddb42add-8492-43a3-b99f-e5f5a4236a00-senselab_logo.png"
    ],
    "latitude": 35.0595668,
    "longitude": 128.9712379,
    "websiteUri": "https://runners.im/main",
    "priceRange": {
      "min": 1,
      "max": 10000
    },
    "parkingOptions": {
      "freeParkingLot": true,
      "paidParkingLot": true,
      "freeStreetParking": true,
      "paidStreetParking": true,
      "valetParking": true,
      "freeGarageParking": true,
      "paidGarageParking": true
    },
    "paymentOptions": {
      "acceptsCreditCards": true,
      "acceptsCashOnly": false
    },
    "accessibilityOptions": {
      "wheelchairAccessibleParking": true,
      "wheelchairAccessibleEntrance": true,
      "wheelchairAccessibleSeating": true,
      "wheelchairAccessibleRestroom": true
    },
    "serviceOptions": {
      "takeout": true,
      "delivery": true,
      "dineIn": true,
      "isReservable": true,
      "outdoorSeating": true,
      "allowsDogs": true,
      "restroom": true,
      "goodForChildren": true,
      "wifi": true,
      "servesBreakfast": true,
      "servesBrunch": true,
      "servesLunch": true,
      "servesDinner": true,
      "servesVegeterian": true,
      "servesBeer": true,
      "servesWine": true,
      "servesCocktail": true,
      "servesDessert": true,
      "servesCoffee": true,
      "liveMusic": true,
      "menuForChildren": true,
      "goodForGroups": true,
      "goodForWatchingSports": true,
      "curbsidePickup": true
    },
    "reviews": [
      {
        "id": "reviewId",
        "writer": "김덕구",
        "title": "그럭저럭",
        "contents": "소고기보다 돼지고기",
        "publiahedAt": "2020-02-20T15:24:43.551"
      }
    ],
    "category": {
      "id": 1,
      "title": "맛집"
    }
  }
}

상태 코드

코드

설명

200

요청이 성공적으로 처리됨

400

잘못된 요청 (파라미터 오류 등)

404

장소를 찾을 수 없음

Last updated