Skip to main content
POST
/
api
/
blind
/
posts
/blind/posts
curl --request POST \
  --url https://api.anysite.io/api/blind/posts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "post": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "url": "<string>",
    "@type": "BlindPost",
    "post_title": "<string>",
    "text": "<string>",
    "image": "<string>",
    "channel": {
      "@type": "BlindPostChannel",
      "id": 123,
      "name": "<string>",
      "category": "<string>",
      "url": "<string>",
      "image": "<string>",
      "description": "<string>",
      "follower_count": 123
    },
    "author_nickname": "<string>",
    "comment_count": 123,
    "comments": []
  }
]

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', '/article/1j4j0aeu' or a full URL)

Minimum string length: 1
Examples:

"1j4j0aeu"

"https://www.teamblind.com/post/1j4j0aeu"

"/article/ruoseebt"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
url
string
required
@type
string
default:BlindPost
post_title
string | null
text
string | null
image
string | null
channel
object | null
author_nickname
string | null
comment_count
integer | null
comments
object[]