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

> Get a Freelancer.com project by its numeric id, SEO slug or project URL: title, full description, status, fixed or hourly type, budget range, hourly commitment, currency, bid statistics (bid count and average bid), required skills with categories, paid upgrades, attachments, location, language and timestamps. Set client_details to also return the client panel from the project page.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/projects
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:
    post:
      tags:
        - /freelancer
      summary: /freelancer/projects
      description: >-
        Get a Freelancer.com project by its numeric id, SEO slug or project URL:
        title, full description, status, fixed or hourly type, budget range,
        hourly commitment, currency, bid statistics (bid count and average bid),
        required skills with categories, paid upgrades, attachments, location,
        language and timestamps. Set client_details to also return the client
        panel from the project page.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Project not found
      operationId: __api_freelancer_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerProjectsPayload'
      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:
    FreelancerProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
        client_details:
          type: boolean
          default: false
      type: object
      required:
        - project
    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
    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

````