> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /payscale/jobs/reviews

> Get user-written reviews for a job title: each review has the reviewer's role and location, the question prompt, a headline, the pros and cons, the employer and when it was last updated.

**Price:** 1 credit per 7 results

**⚠️ Common errors:** 412: Job not found (well-formed but nonexistent job slug)



## OpenAPI

````yaml /openapi/jobs.json post /api/payscale/jobs/reviews
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/payscale/jobs/reviews:
    post:
      tags:
        - /payscale
      summary: /payscale/jobs/reviews
      description: >-
        Get user-written reviews for a job title: each review has the reviewer's
        role and location, the question prompt, a headline, the pros and cons,
        the employer and when it was last updated.


        **Price:** 1 credit per 7 results


        **⚠️ Common errors:** 412: Job not found (well-formed but nonexistent
        job slug)
      operationId: __api_payscale_jobs_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayscaleJobsReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PayscaleReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PayscaleJobsReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/PayscaleCountry'
          default: US
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - job
        - count
    PayscaleReview:
      properties:
        '@type':
          type: string
          default: PayscaleReview
        question_id:
          anyOf:
            - type: integer
            - type: 'null'
        user_description:
          anyOf:
            - type: string
            - type: 'null'
        question_prompt:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        pros:
          anyOf:
            - type: string
            - type: 'null'
        cons:
          anyOf:
            - type: string
            - type: 'null'
        employer:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        question_type:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PayscaleCountry:
      type: string
      enum:
        - US
        - CA
        - UK
        - AU
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````