Skip to main content
POST
/
api
/
naver
/
blog
/
posts
/naver/blog/posts
curl --request POST \
  --url https://api.anysite.io/api/naver/blog/posts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "post": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "blog_id": "<string>",
    "post_url": "<string>",
    "@type": "NaverBlogPost",
    "blog_no": "<string>",
    "post_title": "<string>",
    "text": "<string>",
    "description": "<string>",
    "author": "<string>",
    "blog_name": "<string>",
    "profile_image": "<string>",
    "category": "<string>",
    "category_no": "<string>",
    "image": "<string>",
    "images": [],
    "tags": [],
    "published_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
post
string
required

Naver blog post URL or 'blogId/logNo' pair

Minimum string length: 1
Examples:

"https://blog.naver.com/jisuelife/224303107967"

"jisuelife/224303107967"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
blog_id
string
required
post_url
string
required
@type
string
default:NaverBlogPost
blog_no
string | null
post_title
string | null
text
string | null
description
string | null
author
string | null
blog_name
string | null
profile_image
string | null
category
string | null
category_no
string | null
image
string | null
images
string[]
tags
string[]
published_at
integer | null