Skip to main content
POST
/
api
/
blind
/
channels
/
posts
/blind/channels/posts
curl --request POST \
  --url https://api.anysite.io/api/blind/channels/posts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "channel": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "url": "<string>",
    "@type": "BlindPostCard",
    "post_title": "<string>",
    "text": "<string>",
    "channel": "<string>",
    "channel_url": "<string>",
    "author": {
      "@type": "BlindPostCardAuthor",
      "nickname": "<string>",
      "company": "<string>",
      "company_alias": "<string>",
      "company_image": "<string>"
    },
    "like_count": 123,
    "comment_count": 123,
    "view_count": 123,
    "is_poll": false,
    "poll_vote_count": 123,
    "images": [],
    "link": {
      "@type": "BlindPostLink",
      "url": "<string>",
      "link_title": "<string>",
      "description": "<string>",
      "provider": "<string>",
      "image": "<string>"
    },
    "tags": [],
    "created_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
channel
string
required

Channel slug (the URL segment, e.g. 'tech') or a full channel URL

Minimum string length: 1
Examples:

"tech"

"faang-lounge"

"https://www.teamblind.com/channels/tech"

count
integer
required

Max number of posts to return

Required range: x >= 1
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:BlindPostCard
post_title
string | null
text
string | null
channel
string | null
channel_url
string | null
author
object | null
like_count
integer | null
comment_count
integer | null
view_count
integer | null
is_poll
boolean
default:false
poll_vote_count
integer | null
images
string[]
tags
string[]
created_at
integer | null