> ## 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.

# /freelancer/users/reviews

> List the reviews a Freelancer.com user received, as a freelancer or as an employer. Every review carries the star rating, free-text feedback, the per-category breakdown (quality, communication, expertise, professionalism, hire-again — or clarity, payment promptness and work-again for employer reviews), on-time and on-budget flags, the bid and actually paid amount with currency, the project or contest it belongs to, and the reviewer's profile.

**Price:** 10 credits per 50 results

**⚠️ Common errors:** 412: User not found



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/users/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/freelancer/users/reviews:
    post:
      tags:
        - /freelancer
      summary: /freelancer/users/reviews
      description: >-
        List the reviews a Freelancer.com user received, as a freelancer or as
        an employer. Every review carries the star rating, free-text feedback,
        the per-category breakdown (quality, communication, expertise,
        professionalism, hire-again — or clarity, payment promptness and
        work-again for employer reviews), on-time and on-budget flags, the bid
        and actually paid amount with currency, the project or contest it
        belongs to, and the reviewer's profile.


        **Price:** 10 credits per 50 results


        **⚠️ Common errors:** 412: User not found
      operationId: __api_freelancer_users_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerUsersReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FreelancerReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FreelancerUsersReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        user:
          type: string
          minLength: 1
        role:
          $ref: '#/components/schemas/FreelancerReviewRole'
          default: freelancer
        review_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/FreelancerReviewType'
              type: array
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - user
        - count
    FreelancerReview:
      properties:
        '@type':
          type: string
          default: FreelancerReview
        id:
          type: integer
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        category_ratings:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReviewRatings'
            - type: 'null'
        on_time:
          anyOf:
            - type: string
            - type: 'null'
        on_budget:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - $ref: '#/components/schemas/FreelancerCurrency'
            - type: 'null'
        bid_amount:
          anyOf:
            - type: number
            - type: 'null'
        paid_amount:
          anyOf:
            - type: number
            - type: 'null'
        price_usd:
          anyOf:
            - type: number
            - type: 'null'
        is_sealed:
          anyOf:
            - type: boolean
            - type: 'null'
        review_type:
          anyOf:
            - type: string
            - type: 'null'
        context_id:
          anyOf:
            - type: integer
            - type: 'null'
        context_name:
          anyOf:
            - type: string
            - type: 'null'
        context_url:
          anyOf:
            - type: string
            - type: 'null'
        project_id:
          anyOf:
            - type: integer
            - type: 'null'
        project_status:
          anyOf:
            - type: string
            - type: 'null'
        from_user:
          anyOf:
            - $ref: '#/components/schemas/FreelancerUserBrief'
            - type: 'null'
        submitted_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FreelancerReviewRole:
      type: string
      enum:
        - freelancer
        - employer
    FreelancerReviewType:
      type: string
      enum:
        - project
        - contest
    FreelancerReviewRatings:
      properties:
        '@type':
          type: string
          default: FreelancerReviewRatings
        quality:
          anyOf:
            - type: number
            - type: 'null'
        communication:
          anyOf:
            - type: number
            - type: 'null'
        expertise:
          anyOf:
            - type: number
            - type: 'null'
        professionalism:
          anyOf:
            - type: number
            - type: 'null'
        hire_again:
          anyOf:
            - type: number
            - type: 'null'
        clarity_spec:
          anyOf:
            - type: number
            - type: 'null'
        payment_prom:
          anyOf:
            - type: number
            - type: 'null'
        work_for_again:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    FreelancerCurrency:
      properties:
        '@type':
          type: string
          default: FreelancerCurrency
        code:
          anyOf:
            - type: string
            - type: 'null'
        sign:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        exchange_rate:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    FreelancerUserBrief:
      properties:
        '@type':
          type: string
          default: FreelancerUserBrief
        id:
          type: integer
        alias:
          anyOf:
            - type: string
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        hourly_rate:
          anyOf:
            - type: number
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/FreelancerLocation'
            - type: 'null'
        verification:
          anyOf:
            - $ref: '#/components/schemas/FreelancerVerification'
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_limited_account:
          anyOf:
            - type: boolean
            - type: 'null'
        is_closed:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    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
    FreelancerLocation:
      properties:
        '@type':
          type: string
          default: FreelancerLocation
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        administrative_area:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    FreelancerVerification:
      properties:
        '@type':
          type: string
          default: FreelancerVerification
        is_payment_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_email_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_phone_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_identity_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_deposit_made:
          anyOf:
            - type: boolean
            - type: 'null'
        is_profile_complete:
          anyOf:
            - type: boolean
            - type: 'null'
        is_facebook_connected:
          anyOf:
            - type: boolean
            - type: 'null'
        is_linkedin_connected:
          anyOf:
            - type: boolean
            - type: 'null'
        is_freelancer_verified:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````