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

# /jobvite/jobs/search

> List the open job postings of one company's Jobvite career board by board slug, optionally narrowed by keyword, category, region, location or employment type. Each row carries the job id, title, location and the posting URL.

**Price:** 10 credits per 50 results

**⚠️ Common errors:** 412: Company board not found, 422: A category, region, location or employment_type value that did not narrow the board — usually a value this board does not define, but also raised when the value is genuinely true of every posting the other filters left



## OpenAPI

````yaml /openapi/jobs.json post /api/jobvite/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/jobvite/jobs/search:
    post:
      tags:
        - /jobvite
      summary: /jobvite/jobs/search
      description: >-
        List the open job postings of one company's Jobvite career board by
        board slug, optionally narrowed by keyword, category, region, location
        or employment type. Each row carries the job id, title, location and the
        posting URL.


        **Price:** 10 credits per 50 results


        **⚠️ Common errors:** 412: Company board not found, 422: A category,
        region, location or employment_type value that did not narrow the board
        — usually a value this board does not define, but also raised when the
        value is genuinely true of every posting the other filters left
      operationId: __api_jobvite_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/JobviteJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobviteJobSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JobviteJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 1000
          minimum: 1
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        region:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        location:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
      type: object
      required:
        - company
        - count
    JobviteJobSummary:
      properties:
        '@type':
          type: string
          default: JobviteJobSummary
        id:
          type: string
        company:
          type: string
        location:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````