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

# Get Profile Suggestions

> Get profile suggestions based on a search term.

This endpoint returns a list of profile suggestions that match the provided search term.
The results can be limited to a specific number of suggestions.

## Example
```
?search_term=Tech GmbH&limit=50
```



## OpenAPI

````yaml get /search/suggestions
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /search/suggestions:
    get:
      tags:
        - Search
      summary: Get Profile Suggestions
      description: >-
        Get profile suggestions based on a search term.


        This endpoint returns a list of profile suggestions that match the
        provided search term.

        The results can be limited to a specific number of suggestions.


        ## Example

        ```

        ?search_term=Tech GmbH&limit=50

        ```
      operationId: get_profile_suggestions_search_suggestions_get
      parameters:
        - name: search_term
          in: query
          required: true
          schema:
            type: string
            description: Search term to find profile suggestions
            title: Search Term
          description: Search term to find profile suggestions
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of suggestions to return
            default: 50
            title: Limit
          description: Maximum number of suggestions to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileSearchResponse'
        '400':
          description: Invalid request parameters
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    ProfileSearchResponse:
      properties:
        profiles:
          items:
            anyOf:
              - $ref: '#/components/schemas/CompanyProfile'
              - $ref: '#/components/schemas/PersonProfile'
          type: array
          title: Profiles
          description: List of matching company and person profiles
        count:
          type: integer
          title: Count
          description: Total number of profiles found
      type: object
      required:
        - profiles
        - count
      title: ProfileSearchResponse
      description: Model for profile search response containing companies and persons
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CompanyProfile:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the company
        name:
          type: string
          title: Name
          description: Official company name
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: Country code where company is registered
        raw_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Raw Name
          description: Original unprocessed company name
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          description: Current status of the company
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Active
          description: Whether the company is currently active
        is_visible:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Visible
          description: Whether company is visible in public searches
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Company registration number
        register_prefix:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Prefix
          description: Register prefix (e.g., HRB, HRA)
        register_court:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Court
          description: Court where the company is registered
        register_country:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Country
          description: Country code of register
        register_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Id
          description: Complete register identification
        location:
          anyOf:
            - items:
                type: number
              type: array
            - type: 'null'
          title: Location
          description: Geographical coordinates [latitude, longitude]
        last_entry_date:
          anyOf:
            - type: integer
            - type: 'null'
          title: Last Entry Date
          description: Timestamp of last register entry
        financial_reports_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Financial Reports Count
          description: Number of financial reports available
        has_financial_reports:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Financial Reports
          description: Whether company has financial reports
        original_purpose_lang:
          anyOf:
            - type: string
            - type: 'null'
          title: Original Purpose Lang
          description: Language code of original business purpose
        share_capital_currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Share Capital Currency
          description: Currency code for share capital
      type: object
      required:
        - id
        - name
      title: CompanyProfile
      description: Model for company profile in search results
    PersonProfile:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the person
        name:
          type: string
          title: 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
        birth_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Birth Year
          description: Year of birth
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City of residence
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: Country code of residence
      type: object
      required:
        - id
        - name
      title: PersonProfile
      description: Model for person profile in search results
    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

````