Skip to main content
POST
/
api
/
blind
/
companies
/blind/companies
curl --request POST \
  --url https://api.anysite.io/api/blind/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "BlindCompany",
    "image": "<string>",
    "cover": "<string>",
    "website": "<string>",
    "description": "<string>",
    "industry": "<string>",
    "headquarters": "<string>",
    "employee_size": "<string>",
    "founded": "<string>",
    "rating": 123,
    "review_count": 123,
    "is_premium": true,
    "has_benefits": true,
    "has_jobs": true,
    "category_ratings": {
      "@type": "BlindCategoryRatings",
      "overall": 123,
      "work_life_balance": 123,
      "career_growth": 123,
      "compensation": 123,
      "management": 123,
      "culture": 123
    }
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
url
string
required
@type
string
default:BlindCompany
image
string | null
cover
string | null
website
string | null
description
string | null
industry
string | null
headquarters
string | null
employee_size
string | null
founded
string | null
rating
number | null
review_count
integer | null
is_premium
boolean | null
has_benefits
boolean | null
has_jobs
boolean | null
category_ratings
object | null