Skip to main content
POST
/
api
/
indeed
/
companies
/
reviews
/indeed/companies/reviews
curl --request POST \
  --url https://api.anysite.io/api/indeed/companies/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@indeed_review",
    "id": "<string>",
    "title": "<string>",
    "text": "<string>",
    "rating": 123,
    "job_title": "<string>",
    "location": "<string>",
    "is_current_employee": true,
    "submitted_at": "<string>",
    "helpful_count": 123,
    "not_helpful_count": 123,
    "work_life_balance": 123,
    "compensation_benefits": 123,
    "job_security_advancement": 123,
    "management": 123,
    "culture": 123,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Indeed company alias, or a company URL containing it

Minimum string length: 1
Examples:

"Neuberger-Berman"

"https://www.indeed.com/cmp/Neuberger-Berman"

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

@type
string
default:@indeed_review
id
string | null
title
string | null
text
string | null
rating
number | null
job_title
string | null
location
string | null
is_current_employee
boolean | null
submitted_at
string | null
helpful_count
integer | null
not_helpful_count
integer | null
work_life_balance
number | null
compensation_benefits
number | null
job_security_advancement
number | null
management
number | null
culture
number | null
url
string | null