curl --request GET \
--url https://api.example.com/api/v1/forms/list{
"forms": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"submissionCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"error": "<string>"
}Retrieve a paginated list of all forms belonging to the authenticated user
curl --request GET \
--url https://api.example.com/api/v1/forms/list{
"forms": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"submissionCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"error": "<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.X-API-Key header instead.Show Form Object
undefined, there are no more results.X-RateLimit-Limit: Maximum number of requests allowedX-RateLimit-Remaining: Number of requests remaining in the current windowX-RateLimit-Reset: Unix timestamp when the rate limit resets400 - Bad Request: Invalid parameters (e.g., limit out of range)401 - Unauthorized: Invalid or inactive API key404 - Not Found: User not found429 - Too Many Requests: Rate limit exceeded500 - Internal Server Errorcurl -X GET "https://api.mantlz.app/api/v1/forms/list?limit=10" \
-H "X-API-Key: your_api_key_here"
{
"forms": [
{
"id": "clx1234567890abcdef",
"name": "Contact Form",
"description": "Main contact form for the website",
"submissionCount": 42,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-03-01T14:22:00.000Z"
},
{
"id": "clx0987654321fedcba",
"name": "Newsletter Signup",
"description": "Email newsletter subscription form",
"submissionCount": 156,
"createdAt": "2024-01-10T08:15:00.000Z",
"updatedAt": "2024-02-28T16:45:00.000Z"
}
],
"nextCursor": "clx0987654321fedcba"
}
limitnextCursor field in the responsenextCursor is present, make another request including it as the cursor parameternextCursor is undefined