> ## Documentation Index
> Fetch the complete documentation index at: https://docs.registercheck.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Persons

> Search endpoint for finding persons based on filters.

This endpoint supports:
- Basic person information filtering (name, birth date, location)

The results are paginated with count information included.



## OpenAPI

````yaml get /search/persons
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /search/persons:
    get:
      tags:
        - Search
      summary: Search Persons
      description: |-
        Search endpoint for finding persons based on filters.

        This endpoint supports:
        - Basic person information filtering (name, birth date, location)

        The results are paginated with count information included.
      operationId: search_persons_search_persons_get
      parameters:
        - name: name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Person full name (partial match)
            title: Name
          description: Person full name (partial match)
        - name: first_name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Person first name
            title: First Name
          description: Person first name
        - name: last_name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Person last name
            title: Last Name
          description: Person last name
        - name: city
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Person city
            title: City
          description: Person city
        - name: birth_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Person birth date
            title: Birth Date
          description: Person birth date
        - name: birth_year
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Person birth year
            title: Birth Year
          description: Person birth year
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of items to skip
            default: 0
            title: Offset
          description: Number of items to skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of items to return
            default: 10
            title: Limit
          description: Maximum number of items to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PersonSearchResponse'
        '400':
          description: Invalid filters provided
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    PersonSearchResponse:
      properties:
        persons:
          items:
            $ref: '#/components/schemas/PersonSearchResult'
          type: array
          title: Persons
          description: List of matching persons
        total_count:
          type: integer
          title: Total Count
          description: Total number of persons found
        page_count:
          type: integer
          title: Page Count
          description: Number of pages available
        pagination:
          $ref: >-
            #/components/schemas/registercheck_jobs__api__models__search_response__PaginationInfo
          description: Pagination information for the results
      type: object
      required:
        - persons
        - total_count
        - page_count
        - pagination
      title: PersonSearchResponse
      description: Model for person search response
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PersonSearchResult:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the person
        full_name:
          type: string
          title: Full Name
          description: Full name of the person
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: First name of the person
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: Last name of the person
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City of residence
        birth_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Birth Year
          description: Year of birth
        is_visible:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Visible
          description: Whether person is visible in public searches
      type: object
      required:
        - id
        - full_name
      title: PersonSearchResult
      description: Model for person search result
    registercheck_jobs__api__models__search_response__PaginationInfo:
      properties:
        offset:
          type: integer
          title: Offset
          description: Number of results to skip from the beginning
        limit:
          type: integer
          title: Limit
          description: Maximum number of results to return in this page
      type: object
      required:
        - offset
        - limit
      title: PaginationInfo
      description: Model for pagination information
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````