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

# Get a list of tasks

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Nutshell API",
    "description": "The most powerful API in the world",
    "version": "2.0.0"
  },
  "servers": [
    {
      "url": "app.nutshell.com/rest"
    }
  ],
  "paths": {
    "/tasks": {
      "get": {
        "tags": [
          "Tasks"
        ],
        "summary": "Get a list of tasks",
        "operationId": "2fe0bcdbe5941e2cfdc54a7c09b54200",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Query for tasks that match a specific string",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter[assignee]",
            "in": "query",
            "description": "Filter tasks by assignee",
            "required": false,
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          {
            "name": "filter[relatedEntity]",
            "in": "query",
            "description": "Filter tasks by related entity",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter[dateMin]",
            "in": "query",
            "description": "Filter tasks created after this date. Date expected in the format YYYY-MM-DD",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter[dateMax]",
            "in": "query",
            "description": "Filter tasks created before this date. Date expected in the format YYYY-MM-DD",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page[limit]",
            "in": "query",
            "description": "Limit the number of results returned, for pagination.",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page[page]",
            "in": "query",
            "description": "Request a specific page of results, for pagination. Used in conjunction with the page[limit] parameter. Indexing is 0-based.",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "A list of tasks"
          }
        },
        "security": [
          {
            "basicAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "tags": [
    {
      "name": "Tasks",
      "description": "Tasks"
    }
  ]
}
```