Simple REST API for automated form filling powered by AI. Submit forms programmatically with natural language instructions.
All API requests require your API key in the Authorization header:
Keep your API key secure and never expose it in client-side code.
https://api.formwing.com
Start a new automated form filling job
{ "url": "https://example.com/contact", "context": "I want to inquire about enterprise pricing and schedule a demo" }
{ "id": "wf_8a7b4c2d1e", "status": "queued" }
curl -X POST api.formwing.com/workflows \ -H "Authorization: Bearer your_api_key" \ -H "Content-Type: application/json" \ -d '{"url": "https://example.com/contact", "context": "I want to schedule a demo"}'
Get the current status and results of a form fill job
{ "id": "wf_8a7b4c2d1e", "status": "completed", "output": { "success": true, "formSubmissions": [ { "url": "https://example.com/contact", "method": "POST", "timestamp": 1709312400000 } ] } }
curl api.formwing.com/workflows/wf_8a7b4c2d1e \ -H "Authorization: Bearer your_api_key"
To ensure service quality, API requests are limited to:
Contact us if you need higher limits for your use case.