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

# /habrcareer/resumes/search

> Search Habr Career IT specialists (resumes) by keyword and filters

**Price:** 5 credits per 25 results



## OpenAPI

````yaml /openapi/jobs.json post /api/habrcareer/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/habrcareer/resumes/search:
    post:
      tags:
        - /habrcareer
      summary: /habrcareer/resumes/search
      description: |-
        Search Habr Career IT specialists (resumes) by keyword and filters

        **Price:** 5 credits per 25 results
      operationId: __api_habrcareer_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/HabrcareerResumesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HabrcareerResumeItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HabrcareerResumesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        text:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        qualification:
          anyOf:
            - $ref: '#/components/schemas/HabrcareerResumeQualification'
            - type: 'null'
        skills:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
        city_id:
          anyOf:
            - type: integer
            - type: 'null'
        salary:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        currency:
          anyOf:
            - $ref: '#/components/schemas/HabrcareerResumeCurrency'
            - type: 'null'
        remote:
          anyOf:
            - type: boolean
            - type: 'null'
        relocation:
          anyOf:
            - type: boolean
            - type: 'null'
        with_salary:
          anyOf:
            - type: boolean
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/HabrcareerResumeSort'
            - type: 'null'
      type: object
      required:
        - count
    HabrcareerResumeItem:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeItem
        id:
          type: string
        name:
          type: string
        url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        specialization:
          anyOf:
            - type: string
            - type: 'null'
        qualification:
          anyOf:
            - type: string
            - type: 'null'
        salary_value:
          anyOf:
            - type: integer
            - type: 'null'
        salary_currency:
          anyOf:
            - type: string
            - type: 'null'
        salary_label:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_id:
          anyOf:
            - type: integer
            - type: 'null'
        is_remote:
          anyOf:
            - type: boolean
            - type: 'null'
        is_relocation_ready:
          anyOf:
            - type: boolean
            - type: 'null'
        is_expert:
          anyOf:
            - type: boolean
            - type: 'null'
        age:
          anyOf:
            - type: integer
            - type: 'null'
        experience_months:
          anyOf:
            - type: integer
            - type: 'null'
        last_visited_at:
          anyOf:
            - type: string
            - type: 'null'
        skills:
          items:
            type: string
          type: array
          default: []
        divisions:
          items:
            type: string
          type: array
          default: []
        communities:
          items:
            type: string
          type: array
          default: []
        citizenships:
          items:
            type: string
          type: array
          default: []
        foreign_languages:
          items:
            type: string
          type: array
          default: []
        company_count:
          anyOf:
            - type: integer
            - type: 'null'
        companies_history:
          items:
            $ref: '#/components/schemas/HabrcareerResumeCompanyHistory'
          type: array
          default: []
        last_job:
          anyOf:
            - $ref: '#/components/schemas/HabrcareerResumeJob'
            - type: 'null'
        education:
          anyOf:
            - $ref: '#/components/schemas/HabrcareerResumeItemEducation'
            - type: 'null'
        additional_education:
          items:
            type: string
          type: array
          default: []
        about:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - name
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HabrcareerResumeQualification:
      type: string
      enum:
        - Intern
        - Junior
        - Middle
        - Senior
        - Lead
    HabrcareerResumeCurrency:
      type: string
      enum:
        - rur
        - usd
        - eur
        - uah
        - kzt
    HabrcareerResumeSort:
      type: string
      enum:
        - relevance
        - last_visited
        - salary_desc
        - salary_asc
    HabrcareerResumeCompanyHistory:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeCompanyHistory
        company:
          anyOf:
            - type: string
            - type: 'null'
        experience:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HabrcareerResumeJob:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeJob
        position:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HabrcareerResumeItemEducation:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeItemEducation
        university:
          anyOf:
            - type: string
            - type: 'null'
        university_url:
          anyOf:
            - type: string
            - type: 'null'
        faculty:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          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

````