/api/v1/placesSearch places
Search refined places (the oneset) by keyword, region, category, and confidence. Sorted by review count and confidence, paginated. Use fields to shape the response.
Auth required (Bearer / X-API-Key header preferred)
Run in playground →Parameters
keywordstringoptionalPartial match on name/address · example:버거킹region_codestringoptionalRegion (admin-dong) codebusiness_categorystringoptionalCategory (restaurant/cafe…) · example:restaurantmin_confidencenumberoptionalMinimum confidence (0-1) · example:0.6recommended_forstringoptionalNarrow by occasion (comma, all must match). Natural language resolves too. Values: solo_dining, date, group_dining, family, business_meeting, formal_gathering, late_night… Full list & aliases at /api/v1/meta. · example:group_diningatmospherestringoptionalAtmosphere (comma). quiet, lively, view, cozy, trendy, spacious, traditional, clean, work_study, rainy_mood. · example:quietparkingbooleanoptionalOnly places with confirmed parking. See parking_type for the kind. · example:trueparking_typestringoptionalParking type: onsite, valet, partner, nearby, none. Natural language (e.g. 발렛→valet) resolves. · example:onsitereservablebooleanoptionalOnly reservable places (crawl-confirmed plus Yumi Partner venues). · example:truepayment_methodsstringoptionalRequire payment methods (comma, all must match). cash, card, naver_pay, kakao_pay, toss_pay, alipay, wechat_pay… · example:alipayservesstringoptionalServes (comma). coffee, alcohol, dessert, vegetarian, vegan. · example:alcoholdietarystringoptionalDietary (comma). vegan_options, vegetarian_options, fully_vegan, mixed_group_suitable. · example:vegan_optionspet_friendlybooleanoptionalExample boolean presence filter. Attach the param to require =true (only confirmed places). Full list (wifi, private_room, outdoor_seating, group_friendly, takeout, delivery, corkage_free, has_promotion…) at /api/v1/meta filters.boolean. · example:truefieldsstringoptionalPick fields (Field Mask). Comma-separated tier names (core/contact_hours/quality/edge/media), 'all', or individual field names. Defaults to core. Call tokens = the highest field tier requested (per-request; page_size does not affect tokens). Owner-uploaded photos come via photos (media tier, highest cost 8 — venue & menu image URLs); in lists use photoCount (quality) for a cheap count. recommendedFor may include occasion tags such as solo_dining, late_night, and late_night_eatery. · example:core,rating,accessHintspageintegeroptionalPage (default 1) · example:1page_sizeintegeroptionalItems per page (max 100). Does not affect tokens (per-request billing). Live API keys can access up to a 5,000-result window; beyond that use Bulk Export. · example:20
Response example
json
{
"success": true,
"data": [
{
"id": "11892345",
"name": "콩부자 홍제점",
"category": "restaurant",
"categoryLabel": "국밥",
"location": {
"lat": 37.5891,
"lng": 126.9436
},
"address": {
"road": "서울 서대문구 통일로 450",
"jibun": "서울 서대문구 홍제동 330"
},
"regionCode": "1141011100",
"confidence": 0.64,
"sourceCount": 2,
"lastSeenAt": "2026-06-18T03:00:00.000Z"
}
],
"meta": {
"total": 5,
"page": 1,
"pageSize": 20,
"totalPages": 1
}
}