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

# /dice/jobs/search

> Search Dice job postings by keyword and/or filters (location, posted date, employment type, workplace setting, employer type, easy apply, remote, sponsorship). Each result carries id, title, url, summary, company (name, profile URL, logo), employment and employer type, workplace types, remote/easy-apply/sponsorship flags, location and salary.

**Price:** 5 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/dice/jobs/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/dice/jobs/search:
    post:
      tags:
        - /dice
      summary: /dice/jobs/search
      description: >-
        Search Dice job postings by keyword and/or filters (location, posted
        date, employment type, workplace setting, employer type, easy apply,
        remote, sponsorship). Each result carries id, title, url, summary,
        company (name, profile URL, logo), employment and employer type,
        workplace types, remote/easy-apply/sponsorship flags, location and
        salary.


        **Price:** 5 credits per 100 results
      operationId: __api_dice_jobs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DiceJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DiceJobSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DiceJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        q:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        posted_date:
          anyOf:
            - $ref: '#/components/schemas/DicePostedDate'
            - type: 'null'
        employment_type:
          anyOf:
            - items:
                $ref: '#/components/schemas/DiceEmploymentType'
              type: array
            - type: 'null'
        workplace_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/DiceWorkplaceType'
              type: array
            - type: 'null'
        employer_type:
          anyOf:
            - $ref: '#/components/schemas/DiceEmployerType'
            - type: 'null'
        easy_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        is_remote:
          anyOf:
            - type: boolean
            - type: 'null'
        willing_to_sponsor:
          anyOf:
            - type: boolean
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    DiceJobSearchResult:
      properties:
        '@type':
          type: string
          default: DiceJobSearchResult
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        company_url:
          anyOf:
            - type: string
            - type: 'null'
        company_logo:
          anyOf:
            - type: string
            - type: 'null'
        client_brand_id:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        employer_type:
          anyOf:
            - type: string
            - type: 'null'
        workplace_types:
          items:
            type: string
          type: array
          default: []
        is_remote:
          anyOf:
            - type: boolean
            - type: 'null'
        easy_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        willing_to_sponsor:
          anyOf:
            - type: boolean
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/DiceJobLocation'
            - type: 'null'
        salary:
          anyOf:
            - $ref: '#/components/schemas/DiceJobSalary'
            - type: 'null'
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
        modified_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DicePostedDate:
      type: string
      enum:
        - ONE
        - THREE
        - SEVEN
    DiceEmploymentType:
      type: string
      enum:
        - FULLTIME
        - PARTTIME
        - CONTRACTS
        - THIRD_PARTY
    DiceWorkplaceType:
      type: string
      enum:
        - Remote
        - On-Site
        - Hybrid
    DiceEmployerType:
      type: string
      enum:
        - Direct Hire
        - Recruiter
    DiceJobLocation:
      properties:
        '@type':
          type: string
          default: DiceJobLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DiceJobSalary:
      properties:
        '@type':
          type: string
          default: DiceJobSalary
        text:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        min_value:
          anyOf:
            - type: number
            - type: 'null'
        max_value:
          anyOf:
            - type: number
            - 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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````