Retrieves a published form by its ID or slug. This endpoint is public and does not require authentication.
# By Slug
curl -X GET "https://api.example.com/v1/forms/contact-form"
# By ID
curl -X GET "https://api.example.com/v1/forms/form_123"
{
"id": "form_123",
"name": "Contact Form",
"title": "Contact Us",
"description": "A simple contact form.",
"fields": [
{ "id": "name", "type": "text", "label": "Name", "required": true },
{ "id": "email", "type": "email", "label": "Email", "required": true }
],
"settings": null
}