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

# Get tasks

> Retrieves all tasks based on query parameters. Filters can include responsible user IDs and date range (fromDate/toDate).



## OpenAPI

````yaml /openapi.json get /api/public/tasks
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/public/tasks:
    get:
      tags:
        - tasks
      summary: Get tasks
      description: >-
        Retrieves all tasks based on query parameters. Filters can include
        responsible user IDs and date range (fromDate/toDate).
      operationId: TaskPublicController_getTasks
      parameters:
        - name: responsibleIds
          required: false
          in: query
          description: Responsible user IDs to filter tasks
          schema:
            type: array
            items:
              type: string
        - name: fromDate
          required: true
          in: query
          schema:
            type: string
        - name: toDate
          required: true
          in: query
          schema:
            type: string
        - name: includeTasksWithoutDates
          required: false
          in: query
          schema:
            default: true
            type: boolean
        - name: searchFilter
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Returns an array of tasks matching the query criteria
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TaskResponseDto'
        '400':
          description: Invalid query parameters
        '401':
          description: Unauthorized - Invalid or missing authentication token
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskResponseDto'
components:
  schemas:
    TaskResponseDto:
      type: object
      properties: {}

````