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

# /seek/jobs/search

> Search SEEK job ads by keyword and location with filters (classification, subclassification, work type, work arrangement, salary range, listing date, sort order). Returns job cards with id, title, teaser, salary, company, classifications, work types and arrangements, locations, key bullet points, featured flag, listing date, and company logo.

**Price:** 5 credits per 100 results



## OpenAPI

````yaml /openapi/jobs.json post /api/seek/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/seek/jobs/search:
    post:
      tags:
        - /seek
      summary: /seek/jobs/search
      description: >-
        Search SEEK job ads by keyword and location with filters
        (classification, subclassification, work type, work arrangement, salary
        range, listing date, sort order). Returns job cards with id, title,
        teaser, salary, company, classifications, work types and arrangements,
        locations, key bullet points, featured flag, listing date, and company
        logo.


        **Price:** 5 credits per 100 results
      operationId: __api_seek_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/SeekJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SeekJobCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SeekJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          default: ''
        where:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        site_key:
          $ref: '#/components/schemas/SeekSiteKey'
          default: AU-Main
        classification:
          anyOf:
            - $ref: '#/components/schemas/SeekClassification'
            - type: 'null'
        subclassification:
          anyOf:
            - type: integer
            - type: 'null'
        work_type:
          anyOf:
            - $ref: '#/components/schemas/SeekWorkType'
            - type: 'null'
        work_arrangement:
          anyOf:
            - $ref: '#/components/schemas/SeekWorkArrangement'
            - type: 'null'
        salary_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        salary_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        salary_type:
          anyOf:
            - $ref: '#/components/schemas/SeekSalaryType'
            - type: 'null'
        date_range:
          anyOf:
            - $ref: '#/components/schemas/SeekDateRange'
            - type: 'null'
        sort_mode:
          $ref: '#/components/schemas/SeekSortMode'
          default: KeywordRelevance
      type: object
      required:
        - count
    SeekJobCard:
      properties:
        '@type':
          type: string
          default: SeekJobCard
        id:
          type: string
        url:
          type: string
        teaser:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        advertiser_id:
          anyOf:
            - type: string
            - type: 'null'
        employer_id:
          anyOf:
            - type: string
            - type: 'null'
        role_id:
          anyOf:
            - type: string
            - type: 'null'
        classifications:
          items:
            $ref: '#/components/schemas/SeekSearchClassification'
          type: array
          default: []
        work_types:
          items:
            type: string
          type: array
          default: []
        work_arrangements:
          items:
            type: string
          type: array
          default: []
        locations:
          items:
            $ref: '#/components/schemas/SeekSearchLocation'
          type: array
          default: []
        bullet_points:
          items:
            type: string
          type: array
          default: []
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        listing_date:
          anyOf:
            - type: string
            - type: 'null'
        listing_date_display:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SeekSiteKey:
      type: string
      enum:
        - AU-Main
        - NZ-Main
    SeekClassification:
      type: string
      enum:
        - '1200'
        - '6251'
        - '6304'
        - '1203'
        - '1204'
        - '7019'
        - '6163'
        - '1206'
        - '6076'
        - '6263'
        - '6123'
        - '1209'
        - '6205'
        - '1210'
        - '1211'
        - '1212'
        - '6317'
        - '6281'
        - '1214'
        - '1216'
        - '6092'
        - '6008'
        - '6058'
        - '1220'
        - '6043'
        - '6362'
        - '1223'
        - '7020'
        - '6246'
        - '1225'
    SeekWorkType:
      type: string
      enum:
        - '242'
        - '243'
        - '244'
        - '245'
    SeekWorkArrangement:
      type: string
      enum:
        - '1'
        - '2'
        - '3'
    SeekSalaryType:
      type: string
      enum:
        - AnnualPackage
        - HourlyRate
    SeekDateRange:
      type: string
      enum:
        - '1'
        - '3'
        - '7'
        - '14'
        - '31'
    SeekSortMode:
      type: string
      enum:
        - KeywordRelevance
        - ListedDate
    SeekSearchClassification:
      properties:
        '@type':
          type: string
          default: SeekSearchClassification
        classification:
          anyOf:
            - type: string
            - type: 'null'
        classification_id:
          anyOf:
            - type: string
            - type: 'null'
        subclassification:
          anyOf:
            - type: string
            - type: 'null'
        subclassification_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SeekSearchLocation:
      properties:
        '@type':
          type: string
          default: SeekSearchLocation
        label:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - 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

````