curl --request GET \
--url https://geniusforms.ai/api/v1/forms \
--header 'X-API-Key: <api-key>'{
"forms": [
{
"id": 208,
"title": "Customer Feedback",
"description": "Help us improve our service",
"isPublished": false,
"shareUrl": "abc123xyz",
"url": "https://geniusforms.ai/f/abc123xyz",
"displayMode": "single-page",
"createdAt": "2023-11-07T05:31:56Z",
"publishedAt": "2023-11-07T05:31:56Z",
"webhook": {
"enabled": false,
"url": "https://example.com/webhook"
}
}
],
"total": 123
}Get all forms for the authenticated user.
curl --request GET \
--url https://geniusforms.ai/api/v1/forms \
--header 'X-API-Key: <api-key>'{
"forms": [
{
"id": 208,
"title": "Customer Feedback",
"description": "Help us improve our service",
"isPublished": false,
"shareUrl": "abc123xyz",
"url": "https://geniusforms.ai/f/abc123xyz",
"displayMode": "single-page",
"createdAt": "2023-11-07T05:31:56Z",
"publishedAt": "2023-11-07T05:31:56Z",
"webhook": {
"enabled": false,
"url": "https://example.com/webhook"
}
}
],
"total": 123
}