curl --request GET \
--url https://api.example.com/api/v1/forms/{formId}/export \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "<string>",
"endDate": "<string>"
}
'{
"401": {},
"403": {},
"429": {},
"500": {}
}Export form submissions as a CSV file
curl --request GET \
--url https://api.example.com/api/v1/forms/{formId}/export \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "<string>",
"endDate": "<string>"
}
'{
"401": {},
"403": {},
"429": {},
"500": {}
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/artistatbl/Mantlz/llms.txt
Use this file to discover all available pages before exploring further.
text/csv;charset=utf-8{form-name}-submissions.csv (form name is normalized to lowercase with hyphens)Submission Date: Formatted as “MMM d, yyyy ‘at’ h:mm a”email: If provided in submission_) are excluded from exportexport_{userId}_{formId}
429 Too Many RequestsX-RateLimit-Limit: Maximum requests allowedX-RateLimit-Remaining: Requests remaining in current windowX-RateLimit-Reset: Unix timestamp when limit resetsCache-Control: no-store, no-cache, must-revalidate, proxy-revalidate
Pragma: no-cache
Expires: 0
curl -X GET "https://api.mantlz.com/api/v1/forms/form_123/export" \
-H "Authorization: Bearer YOUR_CLERK_TOKEN" \
--output submissions.csv
"Contact Form - Form Submissions"
"Generated on: Mar 4, 2026 at 2:30 PM"
"Total Submissions: 3"
"Date Range: Jan 1, 2024 - Jan 31, 2024"
"Submission Date","name","email","message"
"Jan 15, 2024 at 10:30 AM","John Doe","john@example.com","Hello world"
"Jan 14, 2024 at 3:45 PM","Jane Smith","jane@example.com","Test message"
"Jan 13, 2024 at 9:15 AM","Bob Johnson","bob@example.com","Another submission"