---
title: "GET /api/public/forms/registration"
method: GET
path: "/api/public/forms/registration"
tags: ["Forms"]
---

# GET /api/public/forms/registration

`GET /api/public/forms/registration`

List submitted registration (intake) form responses across every registration form, newest first. This is the questionnaire a trainee fills in when joining. Pass traineeId to read one trainee's intake answers. Each answer carries its question label and field type alongside the value. Trainee personal details and phone number are included only when the key also has trainees:read.

## Query parameters

- `traineeId` string
- `includeAnswers` boolean
- `status` 'Pending' | 'Handled'
- `search` string
- `gender` 'males' | 'females' | 'allTrainees'
- `labels` string
- `dateFrom` string
- `dateTo` string
- `page` integer
- `limit` integer

## Response `200`

Successful response

- object — Successful response
  - `data` object[]
    - `id` string
    - `formId` string — Id of the form that was submitted.
    - `formTitle` string
    - `formType` 'registration' | 'update'
    - `traineeInfo` object — The trainee who submitted it.
      - `id` string
      - `name` string
      - `gender` string
    - `status` 'Pending' | 'Handled'
    - `createdAt` string, date-time
  - `pagination` object
    - `page` number
    - `limit` number
    - `total` number, nullable — Total number of matching items. null when the underlying source cannot report an exact count for this page; use hasMore to keep paging.
    - `hasMore` boolean
    - `truncated` boolean — Present and true when the result set exceeded the in-memory scan cap and was truncated. Narrow your filters to page through all items.

## Other responses

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

---

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