Skip to main content
POST
/
api
/
blind
/
posts
/
comments
/blind/posts/comments
curl --request POST \
  --url https://api.anysite.io/api/blind/posts/comments \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "post": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "BlindComment",
    "text": "<string>",
    "author_nickname": "<string>",
    "company": "<string>",
    "company_alias": "<string>",
    "like_count": 123,
    "created_at": 123,
    "is_op": false,
    "images": [],
    "reply_count": 123,
    "replies": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
post
string
required

Blind post id, post URL, or path (e.g. '/post/1j4j0aeu' or '/article/1j4j0aeu')

Minimum string length: 1
Examples:

"1j4j0aeu"

"https://www.teamblind.com/post/ruoseebt"

count
integer
required

Max number of top-level comment threads to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:BlindComment
text
string | null
author_nickname
string | null
company
string | null
company_alias
string | null
like_count
integer | null
created_at
integer | null
is_op
boolean
default:false
images
string[]
reply_count
integer | null
replies
array