cURL
curl --request GET \ --url https://api.fillout.com/v1/api/forms/{formId} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "questions": [ { "id": "<string>", "name": "<string>", "type": "Address" } ], "calculations": [ { "id": "<string>", "name": "<string>", "type": "number" } ], "urlParameters": [ { "id": "<string>", "name": "<string>" } ], "scheduling": [ { "id": "<string>", "name": "<string>" } ], "payments": [ { "id": "<string>", "name": "<string>" } ], "quiz": { "enabled": true } }
Given the formId, returns all the questions in that form and other metadata
Enter your Fillout API key. Format: Bearer <api_key>
The public ID of your form
Form metadata
The response is of type object.
object
Was this page helpful?