Skip to main content
POST
/
api
/
blind
/
companies
/
reviews
/blind/companies/reviews
curl --request POST \
  --url https://api.anysite.io/api/blind/companies/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "BlindReview",
    "alias": "<string>",
    "document_title": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "reason_resign": "<string>",
    "rating": 123,
    "career_rating": 123,
    "work_life_balance_rating": 123,
    "compensation_rating": 123,
    "culture_rating": 123,
    "management_rating": 123,
    "author_nickname": "<string>",
    "job_title": "<string>",
    "location": "<string>",
    "location_country_code": "<string>",
    "employee_status": "<string>",
    "member_start_year": 123,
    "member_end_year": 123,
    "helpful_count": 123,
    "created_at": 123,
    "company": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company name/alias (the URL segment, e.g. 'Google') or a full company profile URL

Minimum string length: 1
Examples:

"Google"

"Microsoft"

"https://www.teamblind.com/company/Google"

count
integer
required

Max number of reviews 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:BlindReview
alias
string | null
document_title
string | null
pros
string | null
cons
string | null
reason_resign
string | null
rating
number | null
career_rating
number | null
work_life_balance_rating
number | null
compensation_rating
number | null
culture_rating
number | null
management_rating
number | null
author_nickname
string | null
job_title
string | null
location
string | null
location_country_code
string | null
employee_status
string | null
member_start_year
integer | null
member_end_year
integer | null
helpful_count
integer | null
created_at
integer | null
company
string | null