Complete reference for Formet Headless APIs and AI Service Provider (Text & Image Generation).
Connect AI agents directly to Formet with standard stdio MCP transport. Allows AI tools like Claude Desktop, Cursor, and Antigravity to build forms, submit headless responses, trigger workflows, process payments, and manage webhooks autonomously.
Covers forms, Gemini AI generation, headless submissions, workflows, payments with GST, webhooks, email/WhatsApp, and tickets.
Autoloadable skill path: .agents/skills/formet-automation/SKILL.md
Execute any command via CLI: node formet_cli.mjs list-forms
Submit a new response for a specific form programmatically.
curl -X POST "https://formet.in/api/v1/forms/fmt_9988/responses" \
-H "Authorization: Bearer formet_uat_universal_test_key" \
-H "Content-Type: application/json" \
-d '{
"answers": {
"full_name": "Alex Smith",
"email": "alex@example.com",
"rating": 5,
"feedback": "Formet Headless API works seamlessly!"
},
"respondent": {
"name": "Alex Smith",
"email": "alex@example.com"
}
}'