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

# /builtin/jobs/search

> Search Built In tech jobs by keyword and/or filters (category, experience level, remote policy, industry, location, skill, posting recency). Each result carries id, title, company, location, remote policy, salary, seniority, industries, a short summary, top skills and the job url.

**Price:** 20 credits per 25 results



## OpenAPI

````yaml /openapi/jobs.json post /api/builtin/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/builtin/jobs/search:
    post:
      tags:
        - /builtin
      summary: /builtin/jobs/search
      description: >-
        Search Built In tech jobs by keyword and/or filters (category,
        experience level, remote policy, industry, location, skill, posting
        recency). Each result carries id, title, company, location, remote
        policy, salary, seniority, industries, a short summary, top skills and
        the job url.


        **Price:** 20 credits per 25 results
      operationId: __api_builtin_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/BuiltinJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuiltinJobSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BuiltinJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - $ref: '#/components/schemas/BuiltinJobCategory'
            - type: 'null'
        experience:
          anyOf:
            - $ref: '#/components/schemas/BuiltinJobExperience'
            - type: 'null'
        remote:
          anyOf:
            - $ref: '#/components/schemas/BuiltinJobRemote'
            - type: 'null'
        industry:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        location:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        skill:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        posted_within:
          anyOf:
            - $ref: '#/components/schemas/BuiltinPostedWithin'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    BuiltinJobSearchResult:
      properties:
        '@type':
          type: string
          default: BuiltinJobSearchResult
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        company_alias:
          anyOf:
            - type: string
            - type: 'null'
        location_text:
          anyOf:
            - type: string
            - type: 'null'
        remote_policy:
          anyOf:
            - type: string
            - type: 'null'
        salary_text:
          anyOf:
            - type: string
            - type: 'null'
        seniority:
          anyOf:
            - type: string
            - type: 'null'
        posted_text:
          anyOf:
            - type: string
            - type: 'null'
        industries:
          items:
            type: string
          type: array
          default: []
        summary:
          anyOf:
            - type: string
            - type: 'null'
        skills:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BuiltinJobCategory:
      type: string
      enum:
        - ai-machine-learning
        - consultant
        - customer-success-experience
        - cyber-security
        - data-analytics
        - designer
        - engineering
        - finance
        - hr-recruiting
        - legal
        - marketing
        - operations-support
        - product-management
        - program-project-management
        - sales
        - supply-chain-procurement
    BuiltinJobExperience:
      type: string
      enum:
        - internship
        - entry-level
        - junior
        - mid-level
        - senior
        - expert-leader
    BuiltinJobRemote:
      type: string
      enum:
        - remote
        - hybrid
        - office
    BuiltinPostedWithin:
      type: string
      enum:
        - '1'
        - '3'
        - '7'
        - '30'
    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

````