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

> List the entries freelancers submitted to a Freelancer.com contest: entry number, title, description, status, contest-holder rating, like count, sell price, every uploaded file with its CDN URL and thumbnail, submission and win timestamps, and the submitting freelancer's public profile.

**Price:** 5 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/freelancer/contests/entries
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/entries:
    post:
      tags:
        - /freelancer
      summary: /freelancer/contests/entries
      description: >-
        List the entries freelancers submitted to a Freelancer.com contest:
        entry number, title, description, status, contest-holder rating, like
        count, sell price, every uploaded file with its CDN URL and thumbnail,
        submission and win timestamps, and the submitting freelancer's public
        profile.


        **Price:** 5 credits per 100 results
      operationId: __api_freelancer_contests_entries_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreelancerContestsEntriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FreelancerContestEntry'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FreelancerContestsEntriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        contest:
          type: string
          minLength: 1
        statuses:
          anyOf:
            - items:
                $ref: '#/components/schemas/FreelancerEntryStatus'
              type: array
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/FreelancerEntrySort'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - contest
        - count
    FreelancerContestEntry:
      properties:
        '@type':
          type: string
          default: FreelancerContestEntry
        id:
          type: integer
        contest_id:
          anyOf:
            - type: integer
            - type: 'null'
        number:
          anyOf:
            - type: integer
            - type: 'null'
        entry_title:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        like_count:
          anyOf:
            - type: integer
            - type: 'null'
        sell_price:
          anyOf:
            - type: number
            - type: 'null'
        entry_url:
          anyOf:
            - type: string
            - type: 'null'
        files:
          items:
            $ref: '#/components/schemas/FreelancerContestEntryFile'
          type: array
          default: []
        owner:
          anyOf:
            - $ref: '#/components/schemas/FreelancerUserBrief'
            - type: 'null'
        entered_at:
          anyOf:
            - type: integer
            - type: 'null'
        won_at:
          anyOf:
            - type: integer
            - type: 'null'
        eliminated_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FreelancerEntryStatus:
      type: string
      enum:
        - active
        - won
        - withdrawn
        - eliminated
        - draft
        - pending
        - bought
    FreelancerEntrySort:
      type: string
      enum:
        - time_entered
        - rating
        - number
    FreelancerContestEntryFile:
      properties:
        '@type':
          type: string
          default: FreelancerContestEntryFile
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - 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

````