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

# /naukri/jobs/search

> Search Naukri jobs by keyword and filters

**Price:** 10 credits per 20 results



## OpenAPI

````yaml /openapi/jobs.json post /api/naukri/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/naukri/jobs/search:
    post:
      tags:
        - /naukri
      summary: /naukri/jobs/search
      description: |-
        Search Naukri jobs by keyword and filters

        **Price:** 10 credits per 20 results
      operationId: __api_naukri_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/NaukriJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NaukriJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NaukriJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        location:
          anyOf:
            - type: string
            - type: 'null'
        experience:
          anyOf:
            - type: integer
              maximum: 30
              minimum: 0
            - type: 'null'
        freshness:
          anyOf:
            - $ref: '#/components/schemas/NaukriFreshness'
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/NaukriSort'
            - type: 'null'
      type: object
      required:
        - keyword
        - count
    NaukriJob:
      properties:
        '@type':
          type: string
          default: NaukriJob
        id:
          type: string
        url:
          type: string
        company:
          anyOf:
            - $ref: '#/components/schemas/NaukriJobCompany'
            - type: 'null'
        description_text:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        experience_from:
          anyOf:
            - type: integer
            - type: 'null'
        experience_to:
          anyOf:
            - type: integer
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        work_mode:
          anyOf:
            - type: string
            - type: 'null'
        vacancy_count:
          anyOf:
            - type: integer
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        preferred_keywords:
          items:
            type: string
          type: array
          default: []
        is_walk_in:
          anyOf:
            - type: boolean
            - type: 'null'
        walk_in:
          anyOf:
            - $ref: '#/components/schemas/NaukriJobWalkIn'
            - type: 'null'
        hiring_for:
          anyOf:
            - type: string
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - title
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NaukriFreshness:
      type: string
      enum:
        - '1'
        - '3'
        - '7'
        - '15'
        - '30'
    NaukriSort:
      type: string
      enum:
        - r
        - f
        - p
    NaukriJobCompany:
      properties:
        '@type':
          type: string
          default: NaukriJobCompany
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        reviews_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    NaukriJobWalkIn:
      properties:
        '@type':
          type: string
          default: NaukriJobWalkIn
        date_from:
          anyOf:
            - type: string
            - type: 'null'
        date_to:
          anyOf:
            - type: string
            - type: 'null'
        time:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          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

````