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

> Get a Habr Career IT specialist (resume) profile by username

**Price:** 5 credits

**⚠️ Common errors:** 412: Specialist profile not found



## OpenAPI

````yaml /openapi/jobs.json post /api/habrcareer/resumes
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:
    post:
      tags:
        - /habrcareer
      summary: /habrcareer/resumes
      description: |-
        Get a Habr Career IT specialist (resume) profile by username

        **Price:** 5 credits

        **⚠️ Common errors:** 412: Specialist profile not found
      operationId: __api_habrcareer_resumes_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HabrcareerResumesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HabrcareerResume'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HabrcareerResumesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        resume:
          type: string
          minLength: 1
      type: object
      required:
        - resume
    HabrcareerResume:
      properties:
        '@type':
          type: string
          default: HabrcareerResume
        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:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        age:
          anyOf:
            - type: string
            - type: 'null'
        experience:
          anyOf:
            - type: string
            - type: 'null'
        registered_at:
          anyOf:
            - type: string
            - type: 'null'
        relocation:
          anyOf:
            - type: string
            - type: 'null'
        is_expert:
          anyOf:
            - type: boolean
            - type: 'null'
        skills:
          items:
            type: string
          type: array
          default: []
        divisions:
          items:
            type: string
          type: array
          default: []
        citizenships:
          items:
            type: string
          type: array
          default: []
        foreign_languages:
          items:
            type: string
          type: array
          default: []
        about:
          anyOf:
            - type: string
            - type: 'null'
        companies:
          items:
            $ref: '#/components/schemas/HabrcareerResumeCompany'
          type: array
          default: []
        education:
          items:
            $ref: '#/components/schemas/HabrcareerResumeEducationItem'
          type: array
          default: []
        additional_education:
          items:
            $ref: '#/components/schemas/HabrcareerResumeEducationItem'
          type: array
          default: []
      type: object
      required:
        - id
        - name
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HabrcareerResumeCompany:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeCompany
        location:
          anyOf:
            - type: string
            - type: 'null'
        positions:
          items:
            $ref: '#/components/schemas/HabrcareerResumePosition'
          type: array
          default: []
      type: object
    HabrcareerResumeEducationItem:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeEducationItem
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        courses:
          items:
            $ref: '#/components/schemas/HabrcareerResumeEducationCourse'
          type: array
          default: []
      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
    HabrcareerResumePosition:
      properties:
        '@type':
          type: string
          default: HabrcareerResumePosition
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HabrcareerResumeEducationCourse:
      properties:
        '@type':
          type: string
          default: HabrcareerResumeEducationCourse
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````