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

> List Freelancer.com design contests by lifecycle status, newest first, optionally narrowed to specific contest holders. Each result carries the full contest — title, brief, prize, skills, upgrades and the owner's public profile.

**Price:** 10 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/contests/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/contests/search:
    post:
      tags:
        - /freelancer
      summary: /freelancer/contests/search
      description: >-
        List Freelancer.com design contests by lifecycle status, newest first,
        optionally narrowed to specific contest holders. Each result carries the
        full contest — title, brief, prize, skills, upgrades and the owner's
        public profile.


        **Price:** 10 credits per 100 results
      operationId: __api_freelancer_contests_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerContestsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FreelancerContest'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FreelancerContestsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        statuses:
          items:
            $ref: '#/components/schemas/FreelancerContestStatus'
          type: array
          minItems: 1
        owners:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - statuses
        - count
    FreelancerContest:
      properties:
        '@type':
          type: string
          default: FreelancerContest
        id:
          type: integer
        contest_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        contest_url:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        contest_type:
          anyOf:
            - type: string
            - type: 'null'
        prize:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - $ref: '#/components/schemas/FreelancerCurrency'
            - type: 'null'
        skills:
          items:
            $ref: '#/components/schemas/FreelancerSkill'
          type: array
          default: []
        upgrades:
          items:
            type: string
          type: array
          default: []
        entry_count:
          anyOf:
            - type: integer
            - type: 'null'
        duration_days:
          anyOf:
            - type: integer
            - type: 'null'
        judging_period_days:
          anyOf:
            - type: integer
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        is_extended:
          anyOf:
            - type: boolean
            - type: 'null'
        owner:
          anyOf:
            - $ref: '#/components/schemas/FreelancerUserBrief'
            - type: 'null'
        submitted_at:
          anyOf:
            - type: integer
            - type: 'null'
        posted_at:
          anyOf:
            - type: integer
            - type: 'null'
        ends_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FreelancerContestStatus:
      type: string
      enum:
        - active
        - closed
        - pending
    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
    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
    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

````