---
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, required
    - `name` string, required
    - `description` string
    - `status` 'ACTIVE' | 'COMPLETED' | 'DRAFT', required
    - `isRetraced` 'YES' | 'NO', required
    - `isTemplate` number, required
    - `templateId` string
    - `questionCount` number
    - `invitedCompanies` number
    - `timesUsedAsTemplate` number
    - `createdAt` string
    - `updatedAt` string
    - `firstRequestDate` string
    - `updatedByUserName` string
    - `updatedByCompanyName` string
    - `statistics` object
      - `totalApprovedResponses` number
      - `totalInReviewResponses` number
      - `totalDeniedResponses` number
      - `totalMissingResponses` number
      - `totalQuestions` number
      - `approvedResponsesPercentage` number
      - `inReviewResponsesPercentage` number
      - `deniedResponsesPercentage` number
      - `missingResponsesPercentage` number
      - `totalOpenRequests` number
      - `totalInReviewRequests` number
      - `totalCompletedRequests` number
      - `totalCompaniesInvited` number
      - `totalRequestChanges` number

## Other responses

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

## Changes

> 21 revisions in range; 1 not diffed.

- **2026-08-26** `b815f1f4e5bf` — 5 warning, 17 info
  - added the new `ACTIVE` enum value to the `data/items/status` response property for the response status `200`
  - added the new `COMPLETED` enum value to the `data/items/status` response property for the response status `200`
  - added the new `DRAFT` enum value to the `data/items/status` response property for the response status `200`
  - added the new `NO` enum value to the `data/items/isRetraced` response property for the response status `200`
  - …18 more
- **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/1df37791a1bb/schema)
