---
title: "List questionnaires for the current company"
method: GET
path: "/api/questionnaires/"
tags: ["Questionnaire"]
---

# List questionnaires for the current company

`GET /api/questionnaires/`

Paginated, filterable, sortable list of the calling company's questionnaires. Serves the template list instead when `isTemplate` or `myTemplates` is set, or when the caller is a Retraced admin.

## Query parameters

- `page` integer
- `count` integer
- `sort` string
- `filter` string
- `isTemplate` union
  - boolean
  - string
- `isArchived` union
  - boolean
  - string
- `myTemplates` union
  - boolean
  - string

## Response `200`

Default Response

- object
  - `metadata` object, required
    - `success` boolean, required — True when the request succeeded.
    - `pagination` object
      - `page` number, required — Current page number (1-based).
      - `limit` number, required — Page size used for this response. Endpoint defaults vary — see each endpoint's limit parameter.
      - `total` number, required — Total number of records across all pages.
      - `totalPages` number, required — Total number of pages. Iterate until page reaches totalPages.
  - `data` object[], required
    - `id` string, required
    - `companyId` string
    - `name` string
    - `description` string
    - `status` string
    - `isRetraced` string
    - `isTemplate` number
    - `templateId` string
    - `questionCount` union
      - number
      - string
    - `updatedByUserName` string
    - `updatedByCompanyName` string

## Other responses

- `400` — Default Response
- `401` — Default Response
- `403` — Default Response

## Changes

- **2026-08-24** `60f934498ae2` — 1 breaking, 7 info
  - removed the required property `meta` from the response with the `200` status
  - added the optional property `expected` to the response with the `400` status
  - added the optional property `expected` to the response with the `401` status
  - added the optional property `expected` to the response with the `403` status
  - …4 more
- **2026-08-13** `8b48cb95655b` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/retraced/apis/api-reference/changes/api/questionnaires/get.md)

---

[API](https://skmtc.dev/retraced/apis/api-reference.md) · [All operations](https://skmtc.dev/retraced/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/retraced/api-reference/revisions/dacbff173c49/schema)
