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

> Get all lists for the current user



## OpenAPI

````yaml get /lists/
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /lists/:
    get:
      tags:
        - Lists
      summary: Get Lists
      description: Get all lists for the current user
      operationId: get_lists_lists__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ListResponse'
                type: array
                title: Response Get Lists Lists  Get
      security:
        - HTTPBearer: []
components:
  schemas:
    ListResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the list
        name:
          type: string
          title: Name
          description: Name of the list
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Optional description of the list
        emoji:
          anyOf:
            - type: string
            - type: 'null'
          title: Emoji
          description: Optional emoji icon for the list
        created_at:
          type: string
          title: Created At
          description: ISO timestamp when the list was created
        updated_at:
          type: string
          title: Updated At
          description: ISO timestamp when the list was last updated
        items:
          items:
            $ref: '#/components/schemas/ListItemResponse'
          type: array
          title: Items
          description: List of entities in this list
        tags:
          items:
            $ref: '#/components/schemas/TagResponse'
          type: array
          title: Tags
          description: Tags associated with this list
        is_watchlist:
          type: boolean
          title: Is Watchlist
          description: Whether this list is a watchlist with active monitoring
          default: false
      type: object
      required:
        - id
        - name
        - created_at
        - updated_at
      title: ListResponse
      description: Response model for a target list
    ListItemResponse:
      properties:
        entity_id:
          type: string
          title: Entity Id
          description: ID of the entity (company or person)
        entity_name:
          type: string
          title: Entity Name
          description: Name of the entity
        is_company:
          type: boolean
          title: Is Company
          description: Whether the entity is a company (True) or person (False)
          default: true
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Company register number (for companies)
        birth_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Birth Date
          description: Birth date (for persons)
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
          description: Additional notes about the entity
        id:
          type: string
          title: Id
          description: Unique identifier for the list item
        created_at:
          type: string
          title: Created At
          description: ISO timestamp when the item was created
        updated_at:
          type: string
          title: Updated At
          description: ISO timestamp when the item was last updated
        watchlist_subscription_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Watchlist Subscription Id
          description: ID of associated watchlist subscription if applicable
      type: object
      required:
        - entity_id
        - entity_name
        - id
        - created_at
        - updated_at
      title: ListItemResponse
      description: Response model for a list item with metadata
    TagResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the tag
        name:
          type: string
          title: Name
          description: Display name of the tag
      type: object
      required:
        - id
        - name
      title: TagResponse
      description: Response model for list tags
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````