Skip to main content
POST
/
api
/
payscale
/
jobs
/
reviews
/payscale/jobs/reviews
curl --request POST \
  --url https://api.anysite.io/api/payscale/jobs/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "US"
}
'
[
  {
    "@type": "@payscale_review",
    "question_id": 123,
    "user_description": "<string>",
    "question_prompt": "<string>",
    "title": "<string>",
    "text": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "employer": "<string>",
    "job_title": "<string>",
    "country": "<string>",
    "city": "<string>",
    "question_type": 123,
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Job title or Payscale job slug

Minimum string length: 1
Examples:

"Software Engineer"

"Registered_Nurse_(RN)"

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
country
enum<string>
default:US

Country of the reviews

Available options:
US,
CA,
UK,
AU

Response

Successful Response

@type
string
default:@payscale_review
question_id
integer | null
user_description
string | null
question_prompt
string | null
title
string | null
text
string | null
pros
string | null
cons
string | null
employer
string | null
job_title
string | null
country
string | null
city
string | null
question_type
integer | null
updated_at
string | null