> ## 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 Recent Founded Companies

> Get a list of newly founded companies.

This endpoint returns companies that were founded within the specified number of days.
Results can be filtered by register court and paginated.

Args:
    days: Number of days to look back (default: 30)
    register_court: Optional register court to filter by
    offset: Pagination offset (default: 0)
    limit: Number of results per page (default: 10, max: 100)

Returns:
    A list of newly founded companies with their basic information



## OpenAPI

````yaml get /companies/founded-recently/
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /companies/founded-recently/:
    get:
      tags:
        - Companies
      summary: Get Recent Founded Companies
      description: >-
        Get a list of newly founded companies.


        This endpoint returns companies that were founded within the specified
        number of days.

        Results can be filtered by register court and paginated.


        Args:
            days: Number of days to look back (default: 30)
            register_court: Optional register court to filter by
            offset: Pagination offset (default: 0)
            limit: Number of results per page (default: 10, max: 100)

        Returns:
            A list of newly founded companies with their basic information
      operationId: get_recent_founded_companies_companies_founded_recently__get
      parameters:
        - name: days
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Number of days to look back for newly founded companies
            default: 30
            title: Days
          description: Number of days to look back for newly founded companies
        - name: register_court
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by specific register court
            title: Register Court
          description: Filter by specific register court
        - name: offset
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Pagination limit, less than 100 items per page
            default: 50
            title: Limit
          description: Pagination limit, less than 100 items per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoundedRecentlyResponse'
        '404':
          description: No recent founded companies found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    FoundedRecentlyResponse:
      properties:
        companies:
          items:
            $ref: '#/components/schemas/FoundedRecentlyCompany'
          type: array
          title: Companies
          description: List of recently founded companies
        pagination:
          $ref: >-
            #/components/schemas/registercheck_jobs__api__models__founded_recently_response__PaginationInfo
          description: Pagination information for the results
      type: object
      required:
        - companies
        - pagination
      title: FoundedRecentlyResponse
      description: Model for founded recently endpoint response
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FoundedRecentlyCompany:
      properties:
        id:
          type: string
          title: Id
          description: Unique company identifier
        name:
          type: string
          title: Name
          description: Official company name
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
          description: URL-friendly version of the company name
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Form
          description: Legal form of the company (e.g., GmbH, AG)
        register_number:
          anyOf:
            - type: integer
            - type: 'null'
          title: Register Number
          description: Company registration number
        register_court:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Court
          description: Court where the company is registered
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: Country code where company is registered
          default: DE
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
          description: Timestamp when the company record was created
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
          description: Timestamp when the company record was last updated
      type: object
      required:
        - id
        - name
      title: FoundedRecentlyCompany
      description: Model for a company in founded recently results
    registercheck_jobs__api__models__founded_recently_response__PaginationInfo:
      properties:
        total:
          type: integer
          title: Total
          description: Total number of results available
        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:
        - total
        - 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

````