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

> Search open Freelancer.com projects by keyword and filters: project type (fixed/hourly), skill ids, client country, project language, paid upgrades, posted budget range, posted hourly-rate range, average bid range, average hourly-bid range and a latitude/longitude radius for local jobs. Results carry the same fields as the project endpoint.

**Price:** 10 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/projects/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/projects/search:
    post:
      tags:
        - /freelancer
      summary: /freelancer/projects/search
      description: >-
        Search open Freelancer.com projects by keyword and filters: project type
        (fixed/hourly), skill ids, client country, project language, paid
        upgrades, posted budget range, posted hourly-rate range, average bid
        range, average hourly-bid range and a latitude/longitude radius for
        local jobs. Results carry the same fields as the project endpoint.


        **Price:** 10 credits per 100 results
      operationId: __api_freelancer_projects_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerProjectsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FreelancerProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FreelancerProjectsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
            - type: 'null'
        project_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/FreelancerProjectType'
              type: array
            - type: 'null'
        skills:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
        countries:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        languages:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        upgrades:
          anyOf:
            - items:
                $ref: '#/components/schemas/FreelancerProjectUpgrade'
              type: array
            - type: 'null'
        min_budget:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        max_budget:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        min_avg_bid:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        max_avg_bid:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        min_hourly_rate:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        max_hourly_rate:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        min_avg_hourly_bid:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        max_avg_hourly_bid:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        latitude:
          anyOf:
            - type: number
              maximum: 90
              minimum: -90
            - type: 'null'
        longitude:
          anyOf:
            - type: number
              maximum: 180
              minimum: -180
            - type: 'null'
        distance:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/FreelancerProjectSort'
            - type: 'null'
        reverse_sort:
          anyOf:
            - type: boolean
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    FreelancerProject:
      properties:
        '@type':
          type: string
          default: FreelancerProject
        id:
          type: integer
        project_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        project_url:
          anyOf:
            - type: string
            - type: 'null'
        preview_description:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        sub_status:
          anyOf:
            - type: string
            - type: 'null'
        frontend_status:
          anyOf:
            - type: string
            - type: 'null'
        project_type:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - $ref: '#/components/schemas/FreelancerCurrency'
            - type: 'null'
        budget:
          anyOf:
            - $ref: '#/components/schemas/FreelancerProjectBudget'
            - type: 'null'
        hourly_info:
          anyOf:
            - $ref: '#/components/schemas/FreelancerProjectHourlyInfo'
            - type: 'null'
        bid_stats:
          anyOf:
            - $ref: '#/components/schemas/FreelancerProjectBidStats'
            - type: 'null'
        bid_period_days:
          anyOf:
            - type: integer
            - type: 'null'
        skills:
          items:
            $ref: '#/components/schemas/FreelancerSkill'
          type: array
          default: []
        upgrades:
          items:
            type: string
          type: array
          default: []
        attachments:
          items:
            $ref: '#/components/schemas/FreelancerProjectAttachment'
          type: array
          default: []
        location:
          anyOf:
            - $ref: '#/components/schemas/FreelancerLocation'
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        is_local:
          anyOf:
            - type: boolean
            - type: 'null'
        is_hidden_bids:
          anyOf:
            - type: boolean
            - type: 'null'
        is_nonpublic:
          anyOf:
            - type: boolean
            - type: 'null'
        is_escrow_project:
          anyOf:
            - type: boolean
            - type: 'null'
        submitted_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        client:
          anyOf:
            - $ref: '#/components/schemas/FreelancerProjectClient'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FreelancerProjectType:
      type: string
      enum:
        - fixed
        - hourly
    FreelancerProjectUpgrade:
      type: string
      enum:
        - featured
        - urgent
        - sealed
        - NDA
        - ip_contract
        - assisted
        - nonpublic
        - fulltime
        - qualified
    FreelancerProjectSort:
      type: string
      enum:
        - time_updated
        - bid_count
        - relevance
    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
    FreelancerProjectBudget:
      properties:
        '@type':
          type: string
          default: FreelancerProjectBudget
        minimum:
          anyOf:
            - type: number
            - type: 'null'
        maximum:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    FreelancerProjectHourlyInfo:
      properties:
        '@type':
          type: string
          default: FreelancerProjectHourlyInfo
        commitment_hours:
          anyOf:
            - type: integer
            - type: 'null'
        commitment_interval:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FreelancerProjectBidStats:
      properties:
        '@type':
          type: string
          default: FreelancerProjectBidStats
        bid_count:
          anyOf:
            - type: integer
            - type: 'null'
        bid_avg:
          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
    FreelancerProjectAttachment:
      properties:
        '@type':
          type: string
          default: FreelancerProjectAttachment
        filename:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - 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
    FreelancerProjectClient:
      properties:
        '@type':
          type: string
          default: FreelancerProjectClient
        country:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        member_since:
          anyOf:
            - type: string
            - type: 'null'
        verifications:
          items:
            type: string
          type: array
          default: []
      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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````