Naver Search API Documentation
Naver Search API uses /api/v1/search?engine=naver
API endpoint to scrape real-time results.
API Parameters
Search Query
-
- Name
-
q
- Required
- Required
- Description
-
Defines the search term for Naver Search.
Filters
-
- Name
-
time_period
- Required
- Optional
- Description
-
Allows you to restrict your search to a specific time range. It can be one of the following predefined options:
any_time
past_hour
past_day
past_week
past_month
past_3_months
past_6_months
past_year
Alternatively, you can specify a custom date range using the formatDD.MM.YY..DD.MM.YY
.
Pagination
-
- Name
-
page
- Required
- Optional
- Description
-
Specifies the page number for pagination. The first page returns approximately 5 organic results along with other types of results, while each subsequent page contains 15 organic results only.
Note: Maximum of10
pages can be retrieved.
Engine
-
- Name
-
engine
- Required
- Required
- Description
-
The
engine
parameter specifies the engine to use for retrieving data. It must be set tonaver
.
Api Key
-
- Name
-
api_key
- Required
- Required
- Description
-
The
api_key
authenticates your requests. You must include it either as a query parameter, likehttps://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY
, or in the Authorization header asBearer YOUR_API_KEY
.
API Examples
Knowledge Graph
![Knowledge Graph](/assets/docs/naver/knowledge_graph-4c928d29cac762c31a5025cf2acafe2d12ba5c5dfbe21dfd787a6b42b2b62a41.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%ED%95%B4%EB%B0%A9%EC%8B%9D%EB%8B%B9
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "해방식당"
}
response = requests.get(url, params=params)
print(response.text)
{
"knowledge_graph": {
"title": "해방식당",
"subtitle": "한식",
"rating": 4.68,
"visitor_reviews": 1384,
"blog_reviews": 1094,
"type": "해방촌 정갈한 퓨전 요리",
"directions": "https://map.naver.com/p/directions/-/14135864.305644426,4515440.88716859,%ED%95%B4%EB%B0%A9%EC%8B%9D%EB%8B%B9,1838952735,PLACE_POI/-/car",
"street_view": "https://map.naver.com/p/entry/place/1838952735?p=s2UVVzqgeUGCH8Dnpp4maQ,-138.46,10.00,Float",
"reservation": "https://map.naver.com/p/entry/place/1838952735?lng=126.9846296&lat=37.5456653&placePath=%2Fbooking%3Fentry%3Dplt&entry=plt&searchType=place",
"order": "Orders closed at the moment",
"address": "서울 용산구 신흥로22길 5 1층 해방식당",
"hours": "영업 종료",
"open_hours": [
{
"name": "수",
"value": "11:30 - 21:30"
},
...
],
"hours_extensions": [
"11:30에 영업 시작11시 30분에 영업 시작",
"01/29 설날 휴무",
"재료소진시 조기마감할수 있습니다."
],
"phone": "0507-1382-7050",
"service_options": [
"예약",
"포장",
"무선 인터넷",
"방문접수/출장"
],
"sentiment_tags": [
{
"text": "\"음식이 맛있어요\"",
"reviews": 1013
},
...
],
"user_reviews": [
{
"review": "눈이 많이 와서 가까운 곳 들렀는데 유명한 곳인지는 몰랐어요😂어쩐지 오픈한 지 얼마 안됐는데도 거의 만석이더라구요...? 직원분들도 너무 화이팅 넘치시고 음식은 말할 것 없이 맛있었습니다 특히 시저샐러드 드레싱이 왜케 맛있죠..? 맛있게 잘 먹고 갑니다😎✨",
"user": "고구마요정",
"date": "2025.01.05.",
"thumbnail": "https://search.pstatic.net/common/?autoRotate=true&quality=95&type=f80_80&src=https%3A%2F%2Fpup-review-phinf.pstatic.net%2FMjAyNTAxMTBfMjg2%2FMDAxNzM2NDkwMzI1MTcy.Ln9fjR6waIAhiijifwUvC_L_rBILXX3YuYMUEmkpIhEg.NO3efkKaJyDCmGvJQTEcSWJiVQpy9dMBe0poJZkroy4g.JPEG%2F275D587E-652D-426B-BA8C-F5623DCD0FAD.jpeg%3Ftype%3Dw1500_60_sharpen"
},
...
],
"similar_places": [
{
"name": "카나비",
"link": "https://map.naver.com/p/entry/place/1822430527?placePath=%2F&entry=rbp&searchType=place",
"type": "한식",
"address": "용산구 한강로1가",
"hours": "영업 종료",
"reviews": 3073,
"thumbnail": "https://search.pstatic.net/common/?autoRotate=true&quality=95&type=f&size=464x464&src=https%3A%2F%2Fpup-review-phinf.pstatic.net%2FMjAyNDA5MjZfMjc0%2FMDAxNzI3MzM0NTMyNTAx.s8Hr6i_ahocpYpBO6gc9FzgDjAfIn4xcSxCcO6n5ORIg.zMp0xUMSwKG_PYlRF1sYSZb-1-Rgk-vSq4Ml5X8Jey4g.JPEG%2F20240921_114338.jpg"
},
...
],
"images": [
"https://search.pstatic.net/common/?autoRotate=true&quality=95&type=w750&src=https%3A%2F%2Fldb-phinf.pstatic.net%2F20240517_152%2F1715935733550pJcrD_JPEG%2FKakaoTalk_Photo_2024-05-17-17-15-13_002.jpeg",
...
]
}
}
Organic Results
![Organic Results](/assets/docs/naver/organic_results-6e6e3b5dfcb86197aa213ae8b32809dbb27d45ba9957567927f94357e2d98200.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=samsung
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "samsung"
}
response = requests.get(url, params=params)
print(response.text)
{
"organic_results": [
{
"position": 1,
"title": "삼성전자",
"link": "https://www.samsung.com/",
"snippet": "갤럭시, TV, PC, 가전...",
"sitelinks": {
"inline": [
{
"title": "갤럭시 스마트폰",
"link": "https://www.samsung.com/sec/smartphones/"
},
...
]
},
"from_the_same_source": [
{
"title": "Samsung US",
"link": "http://www.samsung.com/us/"
}
]
},
{
"position": 2,
"title": "삼성 - 나무위키",
"link": "https://namu.wiki/w/%EC%82%BC%EC%84%B1",
"snippet": "역사 당신이 몰랐던 삼성(Samsung)의 역사...",
"rich_snippet": {
"attributes": {
"소재지": "경기도 수원시 삼성로 129...",
"창립일": "1938년 3월 1일",
"창업주": "이병철"
}
}
},
{
"position": 3,
"title": "Samsung - 위키피디아 영어",
"link": "https://en.wikipedia.org/wiki/Samsung",
"snippet": "Samsung Group (Korean: 삼성 ; Hanja: 三星)...",
"rich_snippet": {
"attributes": {
"founded": "1 March 1938",
"headquarters": "Samsung Town, Seoul"
}
},
"from_the_same_source": [
{
"title": "Samsung Electronics",
"link": "https://en.wikipedia.org/wiki/Samsung_Electronics"
}
]
},
{
"position": 4,
"title": "Samsung - YouTube인증",
"link": "https://www.youtube.com/channel/UCWwgaK7x0_FR1goeSRazfsQ",
"snippet": "Samsung의 유튜브. 약 2.2천 개의 동영상...",
"rich_snippet": {
"detected_extensions": {
"profiles": [
{
"title": "X(트위터)",
"link": "https://twitter.com/samsungdsglobal"
},
...
]
}
}
}
]
}
Ads (Power Link Ads)
![Ads (Power Link Ads)](/assets/docs/naver/ads-7eed9cedf1a4f80bdc7093e56f048dd9e08930c9508c9f0312dff0334db1b578.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=vpn
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "vpn"
}
response = requests.get(url, params=params)
print(response.text)
{
"ads": [
{
"position": 1,
"title": "50만개 IP보유 하이아이피가입만해도 3일무료체험",
"link": "http://www.haiip.net",
"source": "하이아이피",
"displayed_link": "haiip.net",
"snippet": "200대역 10000개유동IP, 24시간 실시간상담, 마케팅/게임VPN, 다량할인",
"snippet_highlighted_words": ["VPN"],
"assets": {
"prices": [
{
"title": "고정아이피",
"price": "9,000원",
"extracted_price": 9000,
"tracking_link": "https://adcr.naver.com/adcr?x=ceKGPA8..."
},
...
]
},
"favicon": "https://ssl.pstatic.net/adimg3.search/imp/nx/power/pc/230719/img/icon_favicon.png",
"thumbnail": "https://searchad-phinf.pstatic.net/MjAyMzA2MjdfOCAg/MDAxNjg3ODU0NDIxMDI5.bps_XYU1NL4K0wUSv6uxdzvgMK5oCuiRwFnln7JFbEog.vSrYC6EPhl6plRnf2O3DO8pnHmbIzfK1AixS-grCXVUg.JPEG/321735-00e8c2b6-d7ae-48ad-98ae-fbaa665d3ace.jpg?type=f160_160"
},
...
]
}
Brand Search Ad
![Brand Search Ad](/assets/docs/naver/brand_search_ad-098600d1f3e841538a72e0b2a79f5d92cb63ec8b5592f53c702baf39a324c9d1.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=apple
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "apple"
}
response = requests.get(url, params=params)
print(response.text)
{
"brand_search_ad": {
"title": "Apple 한국 공식 사이트",
"link": "http://store.apple.com/kr",
"news": {
"type": "할인",
"text": "교육할인 받고 다양한 혜택까지.",
"link": "http://store.apple.com/kr"
},
"thumbnail": {
"text": "2025 Apple 신학기",
"link": "http://store.apple.com/kr",
"image": "https://search.pstatic.net/common/?src=https%3A%2F%2Fditto-phinf.pstatic.net%2F20250106_272%2F1736161394796u8fRD_PNG%2F677bb86f740232cdd5b1ed87.png&type=o&size=472x472&ttype=input"
},
"snippet": "최신 Apple 제품을 먼저 만나 보는 곳iPhone, Apple Watch",
"sitelinks": {
"inline": [
{
"title": "보상 판매",
"link": "http://store.apple.com/kr"
},
...
]
},
"assets": {
"products": [
{
"title": "iPad",
"thumbnail": "https://search.pstatic.net/common/?src=https%3A%2F%2Fditto-phinf.pstatic.net%2F20241108_44%2F1731054315256Lilxx_JPEG%2F672dcae938fb2984a6bfbf61.jpg&type=o&size=232x152&ttype=input",
"tracking_link": "https://adcr.naver.com/adcr?x=DJYESLQqunxCREoyxOnw5v///w==kOcSIqKkDiIhhSRpR9BZiMT4M+y1g9A+EaH2/x6iIgmO0PhoQRi4iAWnXdQ82pGV42X+0ZfbaLhIRI4tNLBNxFbAjuW3jnfsIo7wHnwre9B9Y/qieyD9px8Ym05XTk3aYEiqKkJKLhEhJrk96dDODUObQKzOyFWAuvdSUqK2QjbSx8jvTdLvdyor1Pib2trrn+34dmcrKpBWPso91UaBoDG29GiBbJHPLl/4xSOQTYfaLijyrdh2mO/7b0N8pD1LNJYSnn5CBGsbeB2g6iA0qTb8IKR6lEpczJ+TBL8bnmA5Yf5jzMfK8Sxk5kIpwaYWw4hUvM84VEhR/wm/NO9OT5cSuYSVio4ag9yZiiPLBnknq9vGjldRxvxYAATi4XNi/N4NWTLeUpu+TqKWZ15392FMerwHnRAz0bMJ4tDfu1xJwjUOGbYIsg7NzkCopmCaFKAq7PgvyczN70IsARyeTJNVC5VnaZi3rozkNNpTCI4HEN0S8YejFRDLTgc4CA/axNh1poN9ZnRmRCt9oSV1y/ES9RKBe+3gdLc0Mia+0zmXVsc7GIKt3ChDDv56KkASMHnZJxnPWNK6BkBW24tVt2mtJ5duY2wo/Gw3Jber8BQnzylFiIpDGqwr3AV6oV9DQXtgjT1PtQ3UZ5sOHC9S5i6ufqUPaXogdy814pSXJNLp/yX4lbk1BvAszP3tqg2VfwNvZwcO0bfMcjCae4RS+4A=="
},
...
]
},
"favicon": "https://ditto-phinf.pstatic.net/20240311_177/1710140913444QiwPa_PNG/65eeadefbee1b5707ff29680.png"
}
}
Brand Content Ads
![Brand Content Ads](/assets/docs/naver/brand_content_ads-629a11e0d1c21db0d39cd5dfa249c2cd93cd65a4d607736e33715f27aec6cf70.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=vpn
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "vpn"
}
response = requests.get(url, params=params)
print(response.text)
{
"brand_content_ads": [
{
"position": 1,
"title": "통신 검열, VPN으로 피하는 방법",
"link": "https://adcr.naver.com/adcr?x=1XkpL7RQBTleVSkzOpyHj////w==kTBX1wqyimX7phxqcoycCinRHtEsvh+kQ6lhIr/ewCqufyMz6LqlqpjN+pQGxh7pvAOJqD0iwV42MtJaD1PnNDCfAzVf30G7OVnpfG/pU7847SkNF7grc2HepBQbdR7eTOaJf5BVAxU9cUAor6wu01OEOFnY21yKfjHQBv/aqdHZeYRV1Grcjxje+BF7L4MWzqeBQmBnyJ6/eS1vuQkGBeTCKatv6Ed9OVIndpfz0PjYFl0d7i5yuV+1t94qQL1+m9P5H7D7CundsyWFRI8UWwpYCOQxYwbntWa9Moa4av6eyNP7OUlcLNzIIEX7cc7ULL0IEcecKIAySNefvE8FgZpwU4GgVW/4zWzo93IFKtpuDrgn06Sd4j0pICuXTUTdPPy26xaf5N7XUDIIKVp6IZfTlJ/q3YumCZItZ0UaZ5sF/YWLKFqD1mG6ziv0ovjJma/DP5Pfd0iWYjj/52W6bkRmJZ5GtS0nrE5A/JXuVFZZIePfpTObjS41QWTGhLNoLbRDnwKZi/ClWczEimjnJRMPbl5ckPxV6F18LFYbSrHhMO2FiEKhTiszKNGW/67ooET3x9hquB6+uHKIbEP4t6G6uxO+H9k+5EhVE3XQLTGZsfUmhlSUpwGPQJoxYStCC",
"source": "노드VPN",
"source_link": "https://adcr.naver.com/adcr?x=1XkpL7RQBTleVSkzOpyHj////w==kTBX1wqyimX7phxqcoycCinRHtEsvh+kQ6lhIr/ewCqufyMz6LqlqpjN+pQGxh7pvAOJqD0iwV42MtJaD1PnNDCfAzVf30G7OVnpfG/pU7847SkNF7grc2HepBQbdR7eTOaJf5BVAxU9cUAor6wu01OEOFnY21yKfjHQBv/aqdHZeYRV1Grcjxje+BF7L4MWzqeBQmBnyJ6/eS1vuQkGBeTCKatv6Ed9OVIndpfz0PjYFl0d7i5yuV+1t94qQL1+m9P5H7D7CundsyWFRI8UWwpYCOQxYwbntWa9Moa4av6eyNP7OUlcLNzIIEX7cc7ULL0IEcecKIAySNefvE8FgZpwU4GgVW/4zWzo93IFKtpuDrgn06Sd4j0pICuXTUTdPPy26xaf5N7XUDIIKVp6IZfTlJ/q3YumCZItZ0UaZ5sF/YWLKFqD1mG6ziv0ovjJma/DP5Pfd0iWYjj/52W6bkRmJZ5GtS0nrE5A/JXuVFZZIePfpTObjS41QWTGhLNoLbRDnwKZi/ClWczEimjnJRMPbl5ckPxV6F18LFYbSrHhMO2FiEKhTiszKNGW/67ooET3x9hquB6+uHKIbEP4t6G6uxO+H9k+5EhVE3XQLTGZsfUmhlSUpwGPQJoxYStCC",
"snippet": "우리의 인터넷 자유를 어떻게 지킬 수 있을까요? 인터넷 연결을 암호화하고 사용자의 IP주소를 숨겨주는 VPN은 여러 통제상황에서 개인정보를 보호하고 온라인 안정성과 사이버 보안을 지켜줍니다....",
"date": "2024.12.10."
},
...
]
}
Business Site Ads
![Business Site Ads](/assets/docs/naver/business_site_ads-a2eb5fc0a289ee4af8e4041ed3e12a83c617d7e17988c359e5f3558d2fe812ca.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%ED%98%B8%EC%8A%A4%ED%8C%85
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "호스팅"
}
response = requests.get(url, params=params)
print(response.text)
{
"business_site_ads": [
{
"position": 1,
"title": "호스팅,롯데ON",
"link": "https://www.lotteon.com",
"source": "롯데ON",
"displayed_link": "lotteon.com",
"snippet": "설레는 혜택, 날마다 쇼핑! 최대 20% 온세일 쿠폰백 받고, 명절 준비하자!",
"favicon": "https://ssl.pstatic.net/adimg3.search/imp/nx/power/pc/230719/img/icon_favicon.png"
},
...
]
}
Blogs
![Blogs](/assets/docs/naver/blogs-2ceda1b36cba2f253036ab3e40a6f8f96cc79eca73bdd0838e3bd1f55f5344dd.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=deepseek+blogs
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "deepseek blogs"
}
response = requests.get(url, params=params)
print(response.text)
{
"blogs": [
{
"position": 1,
"title": "중국의 DeepSeek(딥시크)에 대한 자료 모음",
"link": "https://blog.naver.com/privacy01/223740429381",
"source": "에어컨 바람의 윙윙스토리(다원시스템)",
"source_link": "https://blog.naver.com/privacy01",
"snippet": "■ DeepSeek는 AI Super Cycle을 가속화 시킬 뿐 (1/27, NH투자증권 임지용) [요약] - DeepSeek는 엔비디아 H800 칩을 사용해 비교적 저렴한 비용으로 개발되어 미국의 대중국 수출... (아래) AI의 민주화 : 딥시크 vs. Chat GPT 4o 연휴 잘 보내고 계시는지요. 중국 AI 스타트업 회사가 공개한 Deep Seek이 연일 화제입니다. 오픈 소스인데다 미국 반도체 규제 와중...",
"date": "7시간 전",
"thumbnail": "https://search.pstatic.net/common/?src=http%3A%2F%2Fblogfiles.naver.net%2FMjAyNTAxMjdfMjc1%2FMDAxNzM3OTg5MjM0MzE4.ZILHis8_dhM-2fhz4bMbpPPl7yCM2j1QDquC8GxqdMQg.GBr3AgXjBsBBb515FM2WqhusuVrtTJDqDOYdsgF_Oi4g.JPEG%2Fphoto_2025-01-27_23-47-03.jpg%231280x627&type=ff192_192",
"favicon": "https://search.pstatic.net/common/?src=http%3A%2F%2Fblogpfthumb.phinf.naver.net%2FMjAyMzEyMDlfMTUw%2FMDAxNzAyMDk3MzMyNTg5.93sCznXBCw1BSYGSSFdWnZbEC-Bc19n5l07RuZDH8GIg.DoFQ4u__qcHZg31z5h0kMB7BiLzfMF1034AlHmcxdY8g.JPEG.privacy01%2F_434936ab-655e-4d7f-a0f4-f356eed9661c.jpg%2F_434936ab-655e-4d7f-a0f4-f356eed9661c.jpg&type=f54_54"
},
...
]
}
Curated Content
![Curated Content](/assets/docs/naver/curated_content-4c8cfbfef72264b05898c4cbff4591dfb4177b716f1bf743fce96e5f00f21a32.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=vpn
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "vpn"
}
response = requests.get(url, params=params)
print(response.text)
{
"curated_content": [
{
"position": 1,
"title": "무료한국VPN vpn앱 추천 NORD VPN 사용법",
"link": "https://in.naver.com/gamja321?areacode=itb_bas%2Af_other&query=vpn",
"source": "감자해커",
"source_link": "https://in.naver.com/gamja321?areacode=itb_bas%2Af_other&query=vpn",
"date": "1주 전",
"content_previews": [
{
"title": "1. VPN 왜 필요할까요?",
"description": "내가 꿀릴 게 없어도 요즘은 나의 인터넷 생활에 감시되거나 추적된다는 것을 즐기는 분은 없다고 봅니다. 내 디지털 프라이버시를 보호해 주는 기능이 바로 VPN이죠. 내가 어느 사이트에 들어갔는지, 어떤 파일을 다운로드하고 댓글과 글을 작성했는지 IP를 통한 기록이 남지 않게 해주는 역할입니다. 저는 집에서뿐 아"
},
...
]
},
...
]
}
Local Results
![Local Results](/assets/docs/naver/local_results-82b5453b5c631f54403682dca9c05137e12334b5398e24a3dd68598d86658b5f.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%EB%B3%80%ED%98%B8%EC%82%AC+%EC%84%9C%EC%9A%B8
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "변호사 서울"
}
response = requests.get(url, params=params)
print(response.text)
{
"local_results": [
{
"position": 1,
"title": "국회의사당",
"link": "https://map.naver.com/p/search/%EB%B3%80%ED%98%B8%EC%82%AC%20%EC%84%9C%EC%9A%B8/place/11583151?placePath=%2Fphoto%3Fentry%3Dpll%26from%3Dnx%26fromNxList%3Dtrue&placeSearchOption=entry%3Dpll%26fromNxList%3Dtrue%26x%3D%26y%3D&searchType=place",
"type": "중앙행정기관",
"address": "서울 영등포구 여의도동",
"phone": "02-6788-2114",
"directions": "https://map.naver.com/p/directions/-/14128024.441262174,4513510.775241993,%EA%B5%AD%ED%9A%8C%EC%9D%98%EC%82%AC%EB%8B%B9,11583151,PLACE_POI/-/car",
"street_view": "https://map.naver.com/p/entry/place/11583151?p=gwzXRUbJDUNtw22HK1rdDw,-70.50,-2.33,Float"
},
{
"position": 2,
"title": "법무법인 율재 이혼형사전문변호사 서초 서울 주사무소",
"link": "https://map.naver.com/p/search/%EB%B3%80%ED%98%B8%EC%82%AC%20%EC%84%9C%EC%9A%B8/place/1005642772?placePath=%2Fphoto%3Fentry%3Dpll%26from%3Dnx%26fromNxList%3Dtrue&placeSearchOption=entry%3Dpll%26fromNxList%3Dtrue%26x%3D%26y%3D&searchType=place",
"type": "법률사무소",
"address": "서울 서초구 서초동",
"phone": "0507-1473-1704안내",
"open_hours": "24시간 영업 연중무휴",
"comment": "전문변호사 직접 상담 쿠폰",
"has_chat": true,
"has_coupon": true,
"directions": "https://map.naver.com/p/directions/-/14139042.532766316,4508299.857531248,%EB%B2%95%EB%AC%B4%EB%B2%95%EC%9D%B8%20%EC%9C%A8%EC%9E%AC%20%EC%9D%B4%ED%98%BC%ED%98%95%EC%82%AC%EC%A0%84%EB%AC%B8%EB%B3%80%ED%98%B8%EC%82%AC%20%EC%84%9C%EC%B4%88%20%EC%84%9C%EC%9A%B8%20%EC%A3%BC%EC%82%AC%EB%AC%B4%EC%86%8C,1005642772,PLACE_POI/-/car",
"street_view": "https://map.naver.com/p/entry/place/1005642772?p=6Vncmhnrw6qAt6ETEzqS0w,-103.95,10.00,Float",
"reservation": "https://map.naver.com/p/search/%EB%B3%80%ED%98%B8%EC%82%AC%20%EC%84%9C%EC%9A%B8/place/1005642772?placeSearchOption=fromNxList%3Dtrue%26noredirect%3D1%26entry%3Dpll&searchType=place&lng=127.0131801&lat=37.4947863&placePath=%2Fbooking%3FbookingRedirectUrl%3Dhttps%3A%2F%2Fm.booking.naver.com%2Fbooking%2F6%2Fbizes%2F1131028%3Ftheme%3Dplace%26entry%3Dpll%26lang%3Dko%26entry%3Dpll&area=pll"
},
...
]
}
Questions and Answers
![Questions and Answers](/assets/docs/naver/questions_and_answers-417ead467f498862b1e6a635a72cecf8fb9368ce57a8522b95343dfb50512eac.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=nvdia
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "nvdia"
}
response = requests.get(url, params=params)
print(response.text)
{
"questions_and_answers": [
{
"position": 1,
"title": "nvdia",
"link": "https://kin.naver.com/qna/detail.naver?d1id=1&dirId=1010306&docId=464441983&enc=utf8&kinsrch_src=pc_nx_kin&qb=bnZkaWE%3D",
"question": "gtx 860m은 nvdia제어판에서 디지털 바이브렁스 설정 못하나요??",
"question_highlighted_words": [
"nvdia"
],
"answer": "nvidia에서 제공하는 nvidia 정식 드라이버를 설치할때 제어판 설정이 포함되도록 전체설치로 진행하시면 설정 가능합니다",
"author": "PC Meister 김경민",
"author_badge": "바람신",
"favicon": "https://search.pstatic.net/common/?src=https%3A%2F%2Fkin-phinf.pstatic.net%2F20231105_152%2F1699175385952Xp8VC_JPEG%2F1699175385943.jpg%3Ftype%3Df360_360&type=f32_32",
"date": "2024.02.16."
},
...
]
}
Top Stories
![Top Stories](/assets/docs/naver/top_stories-99850e0110f1946de13f72f1699c36ebcdc6bff0028341a83f08e91d766d6f13.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=Son+Heung-min
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "Son Heung-min"
}
response = requests.get(url, params=params)
print(response.text)
{
"top_stories": [
{
"title": "Son Heung-min nets twice in Europa League win",
"link": "https://en.yna.co.kr/view/AEN20250124001400315?input=2106m",
"source": "연합뉴스",
"date": "4일 전",
"snippet": "football-player Son Heung-min nets twice in Europa League win By Yoo Jee-ho SEOUL, Jan. 24 (Yonhap) -- Son Heung-min struck twice in Tottenham Hotspur's latest continental victory, pushing his club closer to the knockout phase. Son grabbed a brace in Tottenham's 3-2 win over...",
"thumbnail": "https://search.pstatic.net/common/?src=https%3A%2F%2Fimgnews.pstatic.net%2Fimage%2Forigin%2F001%2F2025%2F01%2F24%2F15179027.jpg&type=f200_200&expire=2&refresh=true"
},
...
]
}
Discussions and Forums
![Discussions and Forums](/assets/docs/naver/discussions_and_forums-795b2b3732800ac51a7dda3421e04e3c449d54311f6457cb341f363c466a9a36.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=KBO
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "KBO"
}
response = requests.get(url, params=params)
print(response.text)
{
"discussions_and_forums": [
{
"position": 1,
"source": "사자 사랑방 (삼성라이온즈 팬 커뮤니티)",
"source_link": "https://cafe.naver.com/lionsball",
"members": 122603,
"posts_count": 244,
"posts": [
{
"category": "[야구 TALK]",
"title": "해외에서는 KBO가 인기 많나보네요",
"link": "http://cafe.naver.com/lionsball/3094290?art=ZXh0ZXJuYWwtc2VydmljZS1uYXZlci1zZWFyY2gtaW50ZW50LXZpZXc=.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjYWZlVHlwZSI6IkNBRkVfVVJMIiwiY2FmZVVybCI6Imxpb25zYmFsbCIsImFydGljbGVJZCI6MzA5NDI5MCwiaXNzdWVkQXQiOjE3MzgwNzMzMDkyODh9.oiPE49RESLUW8VayIfpAvqEAgIIeCSYHMEd1eacdiLc",
"date": "2024.12.19.",
"comments_count": 4
},
...
]
},
...
]
}
Inline Shopping (Naver Price Comparison)
![Inline Shopping (Naver Price Comparison)](/assets/docs/naver/inline_shopping-6c913ae145149cdcc88bf3fd5f5b9578aead3dafeadcd10a949a70cf68cdbf00.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=samsung+s24
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "samsung s24"
}
response = requests.get(url, params=params)
print(response.text)
{
"inline_shopping": [
{
"position": 1,
"title": "[삼성전자 갤럭시] S24 울트라 512GB SM-S928N 새제품",
"link": "https://cr3.shopping.naver.com/v2/bridge/searchGate?cat_id=50001519&frm=NVSCPRO&h=2422b1f2bcd2b430e91832237688f59cc5cc1898&nv_mid=49253181475&query=samsung+s24&t=M6IFV3N0",
"seller": "11번가",
"price": 825600,
"delivery_fee": 0,
"delivery_info": [
"오늘출발",
"09:00까지 주문 시"
],
"thumbnail": "https://shopping-phinf.pstatic.net/main_4925318/49253181475.1.jpg?type=f300"
},
...
]
}
Plus Store Results
![Plus Store Results](/assets/docs/naver/plus_store_results-f1c4e3517c7e5c71e92ad7e13963065a57c50dc94cb042e579198f6896c0d12d.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=car+paint
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "car paint"
}
response = requests.get(url, params=params)
print(response.text)
{
"plus_store_results": [
{
"position": 1,
"is_ad": true,
"title": "BMW 순정 정품 페인트 붓펜 알파인 화이트 300 51910301918",
"link": "https://smartstore.naver.com/inflow/outlink/url?url=https%3A%2F%2Fsmartstore.naver.com%2Ftheportal",
"seller": "더포털",
"rating": 4.82,
"reviews": 130,
"price": 38900,
"delivery_fee": 3000,
"thumbnail": "https://shopping-phinf.pstatic.net/main_8758789/87587898354.1.jpg?type=f300"
},
...
]
}
Inline Videos
![Inline Videos](/assets/docs/naver/inline_videos-c02fd9a41b8297829282274adbcfdd6a369b7f2670a0547efb5a1153fac2e21f.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=Korea+Republic+v+Germany+-+2018+FIFA+World+Cup+Russia
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "Korea Republic v Germany - 2018 FIFA World Cup Russia"
}
response = requests.get(url, params=params)
print(response.text)
{
"inline_videos": [
{
"position": 1,
"title": "Korea Republic v Germany | 2018 FIFA World Cup | Match Highlights",
"link": "https://www.youtube.com/watch?v=OKjV2SQfKrw",
"source": "Youtube",
"channel": "FIFA",
"is_official": true,
"date": "2018.06.28.",
"views": 4917,
"thumbnail": "https://search.pstatic.net/sunny/?src=https%3A%2F%2Fi.ytimg.com%2Fvi%2FOKjV2SQfKrw%2Fmaxresdefault.jpg&type=f368_208"
},
...
]
}
Inline Images
![Inline Images](/assets/docs/naver/inline_images-0afc17b651276fea13590bea00ba197131b3ff9f97b67e62ebe64c6aaee0432c.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%EC%84%9D%EA%B5%B4%EC%95%94%EA%B3%BC+%EB%B6%88%EA%B5%AD%EC%82%AC
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "석굴암과 불국사"
}
response = requests.get(url, params=params)
print(response.text)
{
"inline_images": {
"suggestions": [
{
"title": "위치",
"link": "https://search.naver.com?pq=%EC%84%9D%EA%B5%B4%EC%95%94%EA%B3%BC+%EB%B6%88%EA%B5%AD%EC%82%AC&query=%EC%84%9D%EA%B5%B4%EC%95%94%EA%B3%BC+%EB%B6%88%EA%B5%AD%EC%82%AC+%EC%9C%84%EC%B9%98&sm=tab_imt&where=image",
"thumbnail": "https://search.pstatic.net/common/?src=http%3A%2F%2Fblogfiles.naver.net%2FMjAyMzEyMjdfMjUx%2FMDAxNzAzNjcwMzA2ODIx.sBJNttXElQI2OXA7VLKWrG7T4Z6_k_8yOOthLs2MakEg.pcwfU0kTMbtWoWpCJU4FYOEIj_Ju2E6SyWuDCz1_eiQg.JPEG.m7hnru4vqjgq1fn%2F15.jpg&type=f54_54"
},
...
],
"images": [
{
"title": "시간여행 경주 3일차- 불국사 석굴암",
"source": {
"name": "This is me.",
"link": "blog.naver.com"
},
"original": {
"link": "http://blogfiles.naver.net/MjAxODEwMTBfMTYg/MDAxNTM5MTU5ODUwNDg4.VVPf_uDYliJvGK3FqEAmTy5Cb1RCn_DU1OecFFG6Zosg.s43StuHNrsHMejciKZA90_Gq1xMMU6hS7T-iZpZzSpIg.JPEG.yeobaek58/20181010_155847.jpg",
"height": 675,
"width": 900
},
"tag": "석굴암과 불국사",
"thumbnail": "https://search.pstatic.net/common/?src=http%3A%2F%2Fblogfiles.naver.net%2FMjAxODEwMTBfMTYg%2FMDAxNTM5MTU5ODUwNDg4.VVPf_uDYliJvGK3FqEAmTy5Cb1RCn_DU1OecFFG6Zosg.s43StuHNrsHMejciKZA90_Gq1xMMU6hS7T-iZpZzSpIg.JPEG.yeobaek58%2F20181010_155847.jpg&type=a340"
},
...
]
}
}
Related Questions
![Related Questions](/assets/docs/naver/related_questions-7277527b03f940d74b7262dc3644f4974a9108df1437c5f4bf280d458075588b.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%EC%B2%AD%EB%B0%94%EC%A7%80
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "청바지"
}
response = requests.get(url, params=params)
print(response.text)
{
"related_questions": [
{
"question": "남자 청바지 종류는 무엇이 있나요?",
"answer": "남자 청바지 종류는 워싱의 정도에 따라 연청바지 중청바지 생지데님으로 나눌 수 있고요. 최근에는 파스텔 계열의 청바지나 화이트진 블랙진도 인기가 많으니 취향에 맞게 선택해 보세요.",
"info": "Ai 스니펫 기술로 생성된 Q&A입니다.",
"source": "네이버 블로그",
"link": "https://blog.naver.com/alodia22/223417290905"
},
...
]
}
Related Searches
![Related Searches](/assets/docs/naver/related_searches-7be362549fbad1e9207ef895721c841e80083a284c99b84fec75ab50b1662b65.png)
https://www.searchapi.io/api/v1/search?engine=naver&q=%EC%82%BC%EC%84%B1
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "naver",
"q": "삼성"
}
response = requests.get(url, params=params)
print(response.text)
{
"related_searches": [
{
"query": "삼성갤럭시24",
"link": "https://search.naver.com?query=%EC%82%BC%EC%84%B1%EA%B0%A4%EB%9F%AD%EC%8B%9C24&sm=tab_clk.rqT&where=nexearch"
},
{
"query": "삼성갤럭시24울트라",
"link": "https://search.naver.com?query=%EC%82%BC%EC%84%B1%EA%B0%A4%EB%9F%AD%EC%8B%9C24%EC%9A%B8%ED%8A%B8%EB%9D%BC&sm=tab_clk.rqT&where=nexearch"
},
...
]
}