Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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 }