Skip to main content
POST
/
api
/
naver
/
blog
/
posts
/
search
/naver/blog/posts/search
curl --request POST \
  --url https://api.anysite.io/api/naver/blog/posts/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 500,
  "timeout": 300,
  "sort": "relevance",
  "start_date": "2026-01-01",
  "end_date": "2026-06-30"
}
'
[
  {
    "id": "<string>",
    "blog_id": "<string>",
    "post_url": "<string>",
    "@type": "NaverBlogSearchPost",
    "post_title": "<string>",
    "description": "<string>",
    "author": "<string>",
    "blog_name": "<string>",
    "profile_image": "<string>",
    "image": "<string>",
    "images": [],
    "published_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Example:

"제주도 여행"

count
integer
required

Max number of results

Required range: 1 <= x <= 1000
Example:

20

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:relevance

Result ordering

Available options:
relevance,
recent
start_date
string | null

Start date filter (YYYY-MM-DD)

Example:

"2026-01-01"

end_date
string | null

End date filter (YYYY-MM-DD)

Example:

"2026-06-30"

Response

Successful Response

id
string
required
blog_id
string
required
post_url
string
required
@type
string
default:NaverBlogSearchPost
post_title
string | null
description
string | null
author
string | null
blog_name
string | null
profile_image
string | null
image
string | null
images
string[]
published_at
integer | null