Getting started
Organizations
Forms
Workspaces
Forms
Listing questions
Returns a list of all questions in a form.
GET
/
forms
/
{formId}
/
questions
Copy
Ask AI
curl --request GET \
--url https://api.tally.so/forms/{formId}/questions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"questions": [
{
"id": "<string>",
"type": "FORM_TITLE",
"title": "<string>",
"isTitleModifiedByUser": true,
"formId": "<string>",
"isDeleted": true,
"numberOfResponses": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"fields": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "FORM_TITLE",
"blockGroupUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>"
}
]
}
],
"hasResponses": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the form
Response
200
application/json
List of questions
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.tally.so/forms/{formId}/questions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"questions": [
{
"id": "<string>",
"type": "FORM_TITLE",
"title": "<string>",
"isTitleModifiedByUser": true,
"formId": "<string>",
"isDeleted": true,
"numberOfResponses": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"fields": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "FORM_TITLE",
"blockGroupUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>"
}
]
}
],
"hasResponses": true
}
Assistant
Responses are generated using AI and may contain mistakes.