> ## 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/search

> Search the Freelancer.com freelancer directory by keyword and filters: skill ids, country, hourly-rate range, minimum star rating, minimum review count and online status. Each result is a full profile with reputation, skills, qualifications and verifications.

**Price:** 20 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/users/search
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/search:
    post:
      tags:
        - /freelancer
      summary: /freelancer/users/search
      description: >-
        Search the Freelancer.com freelancer directory by keyword and filters:
        skill ids, country, hourly-rate range, minimum star rating, minimum
        review count and online status. Each result is a full profile with
        reputation, skills, qualifications and verifications.


        **Price:** 20 credits per 100 results
      operationId: __api_freelancer_users_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerUsersSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FreelancerUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FreelancerUsersSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
            - type: 'null'
        skills:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
        countries:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        min_hourly_rate:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        max_hourly_rate:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        min_rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        min_review_count:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        online_only:
          anyOf:
            - type: boolean
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/FreelancerUserSort'
            - type: 'null'
        reverse_sort:
          anyOf:
            - type: boolean
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    FreelancerUser:
      properties:
        '@type':
          type: string
          default: FreelancerUser
        id:
          type: integer
        alias:
          anyOf:
            - type: string
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        public_name:
          anyOf:
            - type: string
            - type: 'null'
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        chosen_role:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        hourly_rate:
          anyOf:
            - type: number
            - type: 'null'
        primary_currency:
          anyOf:
            - $ref: '#/components/schemas/FreelancerCurrency'
            - type: 'null'
        primary_language:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/FreelancerLocation'
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        skills:
          items:
            $ref: '#/components/schemas/FreelancerSkill'
          type: array
          default: []
        reputation:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReputation'
            - type: 'null'
        employer_reputation:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReputation'
            - type: 'null'
        verification:
          anyOf:
            - $ref: '#/components/schemas/FreelancerVerification'
            - type: 'null'
        qualifications:
          items:
            $ref: '#/components/schemas/FreelancerQualification'
          type: array
          default: []
        badges:
          items:
            $ref: '#/components/schemas/FreelancerBadge'
          type: array
          default: []
        membership:
          anyOf:
            - $ref: '#/components/schemas/FreelancerMembership'
            - type: 'null'
        portfolio_count:
          anyOf:
            - type: integer
            - type: 'null'
        recommendation_count:
          anyOf:
            - type: integer
            - type: 'null'
        responsiveness:
          anyOf:
            - type: number
            - type: 'null'
        is_preferred_freelancer:
          anyOf:
            - type: boolean
            - type: 'null'
        is_profile_visible:
          anyOf:
            - type: boolean
            - type: 'null'
        is_limited_account:
          anyOf:
            - type: boolean
            - type: 'null'
        is_closed:
          anyOf:
            - type: boolean
            - type: 'null'
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FreelancerUserSort:
      type: string
      enum:
        - rating
        - hourly_rate
        - review_count
    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
    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
    FreelancerSkill:
      properties:
        '@type':
          type: string
          default: FreelancerSkill
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        is_local:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    FreelancerReputation:
      properties:
        '@type':
          type: string
          default: FreelancerReputation
        entire_history:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReputationPeriod'
            - type: 'null'
        last_3_months:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReputationPeriod'
            - type: 'null'
        last_12_months:
          anyOf:
            - $ref: '#/components/schemas/FreelancerReputationPeriod'
            - type: 'null'
        earnings_score:
          anyOf:
            - type: number
            - type: 'null'
        job_history:
          items:
            $ref: '#/components/schemas/FreelancerJobHistoryItem'
          type: array
          default: []
        other_project_count:
          anyOf:
            - type: integer
            - 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
    FreelancerQualification:
      properties:
        '@type':
          type: string
          default: FreelancerQualification
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        qualification_type:
          anyOf:
            - type: string
            - type: 'null'
        level:
          anyOf:
            - type: integer
            - type: 'null'
        score_percentage:
          anyOf:
            - type: number
            - type: 'null'
        user_percentile:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    FreelancerBadge:
      properties:
        '@type':
          type: string
          default: FreelancerBadge
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        awarded_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    FreelancerMembership:
      properties:
        '@type':
          type: string
          default: FreelancerMembership
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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
    FreelancerReputationPeriod:
      properties:
        '@type':
          type: string
          default: FreelancerReputationPeriod
        overall:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        complete_count:
          anyOf:
            - type: integer
            - type: 'null'
        incomplete_count:
          anyOf:
            - type: integer
            - type: 'null'
        on_budget:
          anyOf:
            - type: number
            - type: 'null'
        on_time:
          anyOf:
            - type: number
            - type: 'null'
        completion_rate:
          anyOf:
            - type: number
            - type: 'null'
        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
    FreelancerJobHistoryItem:
      properties:
        '@type':
          type: string
          default: FreelancerJobHistoryItem
        skill_id:
          anyOf:
            - type: integer
            - type: 'null'
        skill_name:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        project_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````