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

# /hh/resumes/search

> Search HeadHunter resumes (guest-visible cards)

**Price:** 10 credits per 20 results



## OpenAPI

````yaml /openapi/jobs.json post /api/hh/resumes/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/hh/resumes/search:
    post:
      tags:
        - /hh
      summary: /hh/resumes/search
      description: |-
        Search HeadHunter resumes (guest-visible cards)

        **Price:** 10 credits per 20 results
      operationId: __api_hh_resumes_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HhResumesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HhResumeSearchItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HhResumesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        text:
          type: string
          default: ''
        area:
          anyOf:
            - type: string
            - type: 'null'
        experience:
          anyOf:
            - $ref: '#/components/schemas/HhResumeExperience'
            - type: 'null'
        period:
          $ref: '#/components/schemas/HhResumeSearchPeriod'
          default: '0'
        order_by:
          $ref: '#/components/schemas/HhResumeSearchOrder'
          default: relevance
        count:
          type: integer
          maximum: 5000
          minimum: 1
      type: object
      required:
        - count
    HhResumeSearchItem:
      properties:
        '@type':
          type: string
          default: HhResumeSearchItem
        id:
          type: string
        url:
          type: string
        age:
          anyOf:
            - type: integer
            - type: 'null'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - $ref: '#/components/schemas/HhResumeSalary'
            - type: 'null'
        predicted_salary:
          anyOf:
            - $ref: '#/components/schemas/HhResumeSalary'
            - type: 'null'
        total_experience_months:
          anyOf:
            - type: integer
            - type: 'null'
        key_skills:
          items:
            type: string
          type: array
          default: []
        has_photo:
          anyOf:
            - type: boolean
            - type: 'null'
        is_online:
          anyOf:
            - type: boolean
            - type: 'null'
        job_search_status:
          anyOf:
            - type: string
            - type: 'null'
        lang:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        last_activity_at:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HhResumeExperience:
      type: string
      enum:
        - noExperience
        - between1And3
        - between3And6
        - moreThan6
    HhResumeSearchPeriod:
      type: string
      enum:
        - '0'
        - '1'
        - '3'
        - '7'
        - '30'
        - '365'
    HhResumeSearchOrder:
      type: string
      enum:
        - relevance
        - publication_time
        - salary_desc
        - salary_asc
    HhResumeSalary:
      properties:
        '@type':
          type: string
          default: HhResumeSalary
        amount:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          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

````