Skip to main content
POST
/
api
/
inhersight
/
companies
/
reviews
/inhersight/companies/reviews
curl --request POST \
  --url https://api.anysite.io/api/inhersight/companies/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300,
  "has_reply": false
}
'
[
  {
    "id": 123,
    "text": "<string>",
    "@type": "InhersightReview",
    "satisfaction_score": 123,
    "satisfaction_slug": "<string>",
    "satisfaction": "<string>",
    "career_level": "<string>",
    "is_featured": true,
    "created_at": 123,
    "replies": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (the URL segment, e.g. 'aro-homes'), numeric company id, or a full company profile URL. Resolve the alias via /inhersight/companies/search if you only have the name.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"aro-homes"

"297729"

"https://www.inhersight.com/company/aro-homes"

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
career_level
enum<string> | null

Filter reviews by reviewer career level

Available options:
early,
mid,
senior,
executive
satisfaction
enum<string> | null

Filter reviews by overall satisfaction level

Available options:
very_satisfied,
satisfied,
indifferent,
unsatisfied,
very_unsatisfied
has_reply
boolean
default:false

Only return reviews that have an employer reply

Response

Successful Response

id
integer
required
text
string
required
@type
string
default:InhersightReview
satisfaction_score
integer | null
satisfaction_slug
string | null
satisfaction
string | null
career_level
string | null
created_at
integer | null
replies
object[]