Get started with the NeetoForm API in minutes. Make your first API call and retrieve your forms. You should have your API key & subdomain ready with you.
curl -X GET "https://{your-workspace}.neetoform.com/api/external/v1/forms" \ -H "X-Api-Key: your-api-key" \ -H "Content-Type: application/json"
your-workspace
your-api-key
{ "forms": [ { "id": "form-123", "title": "Contact Form", "is_published": true, "state": "active", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z", "submissions_count": 42, "attempt_url": "https://mycompany.neetoform.com/forms/form-123", "is_archived": false, "is_disabled": false, "is_suspended": false, "created_by": "user@example.com" } ], "total_count": 1 }