curl --request GET \
--url https://api.example.com/api/v1/forms/{formId}/submissions{
"400": {},
"401": {},
"403": {},
"404": {},
"429": {},
"500": {},
"submissions": [
{
"id": "<string>",
"createdAt": "<string>",
"email": "<string>",
"data": {
"_meta": {
"browser": "<string>",
"country": "<string>",
"timestamp": "<string>"
}
}
}
],
"nextCursor": "<string>",
"plan": "<string>"
}Retrieve paginated submissions for a specific form
curl --request GET \
--url https://api.example.com/api/v1/forms/{formId}/submissions{
"400": {},
"401": {},
"403": {},
"404": {},
"429": {},
"500": {},
"submissions": [
{
"id": "<string>",
"createdAt": "<string>",
"email": "<string>",
"data": {
"_meta": {
"browser": "<string>",
"country": "<string>",
"timestamp": "<string>"
}
}
}
],
"nextCursor": "<string>",
"plan": "<string>"
}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.
X-API-Key headerapiKey query parameternextCursor value from the previous response to fetch the next pageundefined, there are no more resultsFREE, STANDARD, or PROX-RateLimit-Limit: Maximum number of requests allowedX-RateLimit-Remaining: Number of requests remainingX-RateLimit-Reset: Unix timestamp when the rate limit resets429 status code.
startDate or endDate returns a 403 errorstartDate and endDate parameters_meta field is completely removed from submission datacurl -X GET "https://api.mantlz.com/api/v1/forms/form_123/submissions?limit=20" \
-H "X-API-Key: your_api_key_here"
{
"submissions": [
{
"id": "submission_123",
"createdAt": "2024-01-15T10:30:00.000Z",
"email": "user@example.com",
"data": {
"name": "John Doe",
"message": "This is a test submission",
"_meta": {
"browser": "Chrome",
"country": "US",
"timestamp": "2024-01-15T10:30:00.000Z"
}
}
}
],
"nextCursor": "submission_124",
"plan": "PRO"
}
lastUsedAt timestamp is automatically updated when this endpoint is called successfully.