List FAQs
FAQs
List FAQs
Public list of published FAQs shown on the mobile app FAQ screen.
GET
List FAQs
Overview
Returns the published FAQ entries shown on the mobile app’s FAQ screen, ordered byorder ascending. FAQs are managed by admins via the admin FAQs CRUD and can be edited at any time without a redeploy.
Authentication
None. This endpoint is public so the FAQ content is readable before a user signs up.Response — 200 OK
| Field | Type | Notes |
|---|---|---|
items[].id | string | 24-char Mongo ObjectId. |
items[].question | string | The question text. |
items[].answer | string | The answer text. |
items[].order | integer | Display order (ascending). |
Only published FAQs are returned. Drafts (
isPublished: false) are visible only via the admin endpoints.