Skip to main content
POST
/
api
/
comparably
/
companies
/
reviews
/comparably/companies/reviews
curl --request POST \
  --url https://api.anysite.io/api/comparably/companies/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "text": "<string>",
    "is_positive": true,
    "@type": "@comparably_review",
    "question": "<string>",
    "industry": "<string>",
    "answered_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (URL segment like 'google') or a full company profile URL

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

"google"

"microsoft"

"https://www.comparably.com/companies/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

text
string
required
is_positive
boolean
required
@type
string
default:@comparably_review
question
string | null
industry
string | null
answered_at
string | null